From 019ec3963f6b9884a5dd61e1b7565d83e0adfdba Mon Sep 17 00:00:00 2001 From: stevepodell Date: Thu, 5 Apr 2018 10:14:54 -0700 Subject: [PATCH] InAppBrowser.java: New method isURLWhileListed to check for whitelisting of "AllowedSchemes" in a new preference configuration item. There is a new check in shouldOverrideUrlLoading, to allow whitelisted custom schemes like "mycoolapp://" inappbrowser.js: Added "customscheme" channel. --- src/android/InAppBrowser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/android/InAppBrowser.java b/src/android/InAppBrowser.java index e53614d..6682a36 100644 --- a/src/android/InAppBrowser.java +++ b/src/android/InAppBrowser.java @@ -1111,7 +1111,7 @@ public class InAppBrowser extends CordovaPlugin { LOG.e(LOG_TAG, "Error sending sms " + url + ":" + e.toString()); } } - // Test for whitelisted custom scheme names, less than 20 chars long, like mycoolapp: or twitteroauthresponse: (Twitter Oauth Response) + // Test for whitelisted custom scheme names, less than 20 chars long, like mycoolapp:// or twitteroauthresponse:// (Twitter Oauth Response) else if (!url.startsWith("http:") && !url.startsWith("https:") && url.matches("^[a-z]{0,20}://.*?$")) { if (allowedSchemes == null) { String allowed = preferences.getString("AllowedSchemes", "");