We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a67e00 commit aea6b7fCopy full SHA for aea6b7f
framework/src/org/apache/cordova/AllowListPlugin.java
@@ -122,7 +122,7 @@ public Boolean shouldAllowNavigation(String url) {
122
123
@Override
124
public Boolean shouldAllowRequest(String url) {
125
- return (this.shouldAllowNavigation(url) || this.allowedRequests.isUrlAllowListed(url))
+ return (Boolean.TRUE.equals(this.shouldAllowNavigation(url)) || this.allowedRequests.isUrlAllowListed(url))
126
? true
127
: null; // default policy
128
}
0 commit comments