Skip to content

Commit

Permalink
fix(android): Allow WebView to load blob urls (#7551)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile authored Jul 16, 2024
1 parent df4dc9a commit 0dca917
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ public boolean launchIntent(Uri url) {
}
}

if (url.getScheme().equals("data")) {
if (url.getScheme().equals("data") || url.getScheme().equals("blob")) {
return false;
}

Expand Down

0 comments on commit 0dca917

Please sign in to comment.