diff options
author | Allan Wang <me@allanwang.ca> | 2020-02-18 00:11:40 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-18 00:11:40 -0800 |
commit | 0fbf49e583388ea924d8d0cd9374023c33f67a78 (patch) | |
tree | 25232c370f02f36de9d2a8dd27f4db60f4e431d8 | |
parent | b48c76f21e7d11bd6ba34b5684dbc6b077410f49 (diff) | |
parent | e3ada5c2c650a4646873ce2046af945e917c6608 (diff) | |
download | frost-0fbf49e583388ea924d8d0cd9374023c33f67a78.tar.gz frost-0fbf49e583388ea924d8d0cd9374023c33f67a78.tar.bz2 frost-0fbf49e583388ea924d8d0cd9374023c33f67a78.zip |
Merge pull request #1636 from massimilianoLe/dev
Fixed blank loading of some weblinks
-rw-r--r-- | app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt b/app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt index b76f0134..8cba5e11 100644 --- a/app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt +++ b/app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt @@ -76,6 +76,7 @@ class FrostWebView @JvmOverloads constructor( mediaPlaybackRequiresUserGesture = false // TODO check if we need this allowFileAccess = true textZoom = Prefs.webTextScaling + domStorageEnabled = true } setLayerType(LAYER_TYPE_HARDWARE, null) // attempt to get custom client; otherwise fallback to original |