Skip to content

Commit

Permalink
Fix mozilla-mobile#6419: allow video data url navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
garvankeeley committed Apr 17, 2020
1 parent fcac764 commit 6078f08
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -440,8 +440,8 @@ extension BrowserViewController: WKNavigationDelegate {
return
}

// Allow certain application types
if url.hasPrefix("data:application/pdf") || url.hasPrefix("data:application/json") {
// Allow video, and certain application types
if url.hasPrefix("data:video/") || url.hasPrefix("data:application/pdf") || url.hasPrefix("data:application/json") {
decisionHandler(.allow)
return
}
Expand Down

0 comments on commit 6078f08

Please sign in to comment.