aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-09-21 18:03:23 -0700
committerAllan Wang <me@allanwang.ca>2019-09-21 18:03:23 -0700
commitae3b956497f8eb1b019752f9588b04798304c6bd (patch)
treedc63855729ef5d2b880f434d4b2d16d04ace7445 /app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt
parent96908453abbd7e40e13af4359d1bce4524b979a6 (diff)
downloadfrost-ae3b956497f8eb1b019752f9588b04798304c6bd.tar.gz
frost-ae3b956497f8eb1b019752f9588b04798304c6bd.tar.bz2
frost-ae3b956497f8eb1b019752f9588b04798304c6bd.zip
Disable click launches from notification page
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt
index 9e45d4fe..721b2c2d 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt
@@ -68,6 +68,11 @@ open class FrostWebViewClient(val web: FrostWebView) : BaseWebViewClient() {
private val refresh: SendChannel<Boolean> = web.parent.refreshChannel
private val isMain = web.parent.baseEnum != null
+ override fun doUpdateVisitedHistory(view: WebView, url: String?, isReload: Boolean) {
+ v { "History $url" }
+ super.doUpdateVisitedHistory(view, url, isReload)
+ }
+
protected inline fun v(crossinline message: () -> Any?) = L.v { "web client: ${message()}" }
override fun onPageStarted(view: WebView, url: String?, favicon: Bitmap?) {