mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 20:31:02 -05:00
Avoid opening blobs as webpages
Fixes #10060
(cherry picked from commit 548f7f415a
)
This commit is contained in:
parent
7c703b17d3
commit
f8834ee764
1 changed files with 6 additions and 0 deletions
|
@ -124,6 +124,12 @@ fun WebViewScreenContent(
|
|||
request: WebResourceRequest?,
|
||||
): Boolean {
|
||||
request?.let {
|
||||
// Don't attempt to open blobs as webpages
|
||||
if (it.url.toString().startsWith("blob:http")) {
|
||||
return false
|
||||
}
|
||||
|
||||
// Continue with request, but with custom headers
|
||||
view?.loadUrl(it.url.toString(), headers)
|
||||
}
|
||||
return super.shouldOverrideUrlLoading(view, request)
|
||||
|
|
Loading…
Reference in a new issue