Skip to content

Commit

Permalink
fix(android): Allow WebView to load blob urls (#7551) (#7565)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile authored Jul 16, 2024
1 parent 39bbc02 commit 15c659f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,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 15c659f

Please # to comment.