From 67ba3e1ba2f78f590203df6bc6c3d771dde27ef7 Mon Sep 17 00:00:00 2001 From: Omar Gonzalez Date: Tue, 10 Dec 2019 17:38:38 -0500 Subject: [PATCH] Update deeplinks.js _queryToObject call Update deeplinks.js _queryToOjbect call to use `data.url` instead of data.queryString. On Android devices, the data.queryString is returning the queryString already decoded that when passed on to the _queryToObject function could result in some unwanted results. For example, a parameter string value that includes the `=` special character would get truncated unintentionally. --- www/deeplink.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/deeplink.js b/www/deeplink.js index 1d43ba9..17c966e 100644 --- a/www/deeplink.js +++ b/www/deeplink.js @@ -41,7 +41,7 @@ var IonicDeeplink = { this.onDeepLink(function (data) { var realPath = self._getRealPath(data); - var args = self._queryToObject(data.queryString); + var args = self._queryToObject(data.url); var matched = false; var finalArgs;