EddyVerbruggen / Custom-URL-scheme

:link: Launch your Cordova/PhoneGap app by a Custom URL scheme like mycoolapp://
1.03k stars 367 forks source link

URLEncode url passed to WebView loadUrl call on Android #245

Closed TobiasMarklund closed 7 years ago

TobiasMarklund commented 7 years ago

Otherwise e.g. query parameters in the intentstring with values that contain url-encoded ampersands and equalsigns will become corrupt since they are urldecoded before they reach the javascript function.

EddyVerbruggen commented 7 years ago

Makes sense to me. Merged! Would be nice if folks could test the master branch of this repo a bit on Android so we're sure it doesn't break things when published to npm.

seanbriceland commented 6 years ago

@TobiasMarklund @EddyVerbruggen Thank you for this fix! This fixed one of our issues when passing a url as one of our query string parameters. We are currently running this Bleeding edge master for our app. I was curious if this was planned to be added to an official release?