forked from xtools-at/Android-PWA-Wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle if request comes from same hostname. If not, it may be an intent.
This may solve the "External links constantly opening xtools-at#15" issue
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fc10c9f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Better code is to use instead this if condition:
if(Objects.requireNonNull(Uri.parse(String.valueOf(request.getUrl())).getHost()).endsWith(Constants.WEBAPP_HOST))
fc10c9f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
UPDATE: Correct code for shouldOverrideUrlLoading method: