Skip to content

Commit

Permalink
Don't show bubbles guide inline
Browse files Browse the repository at this point in the history
  • Loading branch information
arunkumar9t2 committed Sep 14, 2019
1 parent f0ed22f commit 864f5b5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ public boolean shouldOverrideUrlLoading(WebView view, WebResourceRequest request

@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (url.equalsIgnoreCase("https://goo.gl/photos/BzRV69ABov9zJxVu9")) {
// FIXME Sorry future me but I have to ship this today
if (url.equalsIgnoreCase("https://goo.gl/photos/BzRV69ABov9zJxVu9")
|| url.equalsIgnoreCase("https://github.com/arunkumar9t2/lynket-browser/wiki/Android-10-Bubbles-Guide")) {
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
activity.startActivity(i);
return true;
Expand Down

0 comments on commit 864f5b5

Please sign in to comment.