Skip to content

Commit

Permalink
test new singin
Browse files Browse the repository at this point in the history
  • Loading branch information
modos189 committed Feb 13, 2024
1 parent a800b37 commit 5a003a4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 5a003a4

Please sign in to comment.