diff options
author | Allan Wang <me@allanwang.ca> | 2019-09-28 23:42:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-28 23:42:01 -0700 |
commit | 58309cfd62ed26f3cf5d2b1cb933f50078937a3a (patch) | |
tree | 4d137549e34a1b5c35202543a8deb7054f8f977c /app/src/main/kotlin | |
parent | 9b32e6c884797985e72deb18c05ea3d434a966ac (diff) | |
parent | 8c9d1df82f31b7eca5fd383bf51c8634fa0696ee (diff) | |
download | frost-58309cfd62ed26f3cf5d2b1cb933f50078937a3a.tar.gz frost-58309cfd62ed26f3cf5d2b1cb933f50078937a3a.tar.bz2 frost-58309cfd62ed26f3cf5d2b1cb933f50078937a3a.zip |
Merge branch 'dev' into desktop-url-convert
Diffstat (limited to 'app/src/main/kotlin')
-rw-r--r-- | app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt | 5 |
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 add643c5..a7e642b1 100644 --- a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt +++ b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebViewClients.kt @@ -70,6 +70,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?) { |