Skip to content
This repository was archived by the owner on Aug 17, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
  • Loading branch information
omargon authored Dec 10, 2019
commit 67ba3e1ba2f78f590203df6bc6c3d771dde27ef7
2 changes: 1 addition & 1 deletion www/deeplink.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down