From f45f5859eb3330bda34f16661e9b85ba77f4ddc7 Mon Sep 17 00:00:00 2001 From: Tommi Reiman Date: Sun, 26 Apr 2020 21:28:04 +0300 Subject: [PATCH] Fix reflection warning --- modules/reitit-core/src/reitit/impl.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/reitit-core/src/reitit/impl.cljc b/modules/reitit-core/src/reitit/impl.cljc index 2144d000..6dbb1954 100644 --- a/modules/reitit-core/src/reitit/impl.cljc +++ b/modules/reitit-core/src/reitit/impl.cljc @@ -179,7 +179,7 @@ (URLDecoder/decode (if (.contains ^String s "+") (.replace ^String s "+" "%2B") - s) + ^String s) "UTF-8")) :cljs (js/decodeURIComponent s))))