Skip to content

Commit

Permalink
Fix end of queue redirection
Browse files Browse the repository at this point in the history
  • Loading branch information
Qoxis committed Dec 4, 2019
1 parent e13efb1 commit f30f3f4
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -207,13 +207,6 @@ public boolean shouldOverrideUrlLoading(WebView view, String urlString) {
return true;
}

if (!isTargetDomain && !isQueueDomain) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(urlString));
startActivity(browserIntent);
disposeWebview(webView);
return true;
}

return false;
}});
webView.loadUrl(queueUrl);
Expand Down

0 comments on commit f30f3f4

Please sign in to comment.