Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test new singin
Browse files Browse the repository at this point in the history
modos189 committed Feb 13, 2024
1 parent a800b37 commit 5a003a4
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -330,6 +330,10 @@ public boolean shouldOverrideUrlLoading(final WebView view, final String url) {
Log.d("Google login");
return false;
}
if (uriHost.startsWith("signin.nianticlabs.")) {
Log.d("Niantic login");
return false;
}
if (mIitc.isInternalHostname(uriHost)) {
Log.d("internal host");
return false;
Original file line number Diff line number Diff line change
@@ -101,6 +101,11 @@ public boolean shouldOverrideUrlLoading(final WebView view, final String url) {
openDialogPopup();
return false;
}
if (uriHost.startsWith("signin.nianticlabs.")) {
Log.d("popup: Niantic login");
openDialogPopup();
return false;
}
if (mIitc.isInternalHostname(uriHost)) {
Log.d("popup: internal host");
openDialogPopup();

0 comments on commit 5a003a4

Please sign in to comment.