Avoid crashes when opening WebView from reader

Also ensure WebViewActivity has an Assistant URL when it first opens with a URL.
This commit is contained in:
arkon
2023-01-08 10:17:50 -05:00
parent a42be4a833
commit 425e48bec6
2 changed files with 11 additions and 7 deletions
@@ -42,10 +42,11 @@ class WebViewActivity : BaseActivity() {
return
}
val url = intent.extras!!.getString(URL_KEY) ?: return
val url = intent.extras?.getString(URL_KEY) ?: return
assistUrl = url
var headers = mutableMapOf<String, String>()
val source = sourceManager.get(intent.extras!!.getLong(SOURCE_KEY)) as? HttpSource
if (source != null) {
(sourceManager.get(intent.extras!!.getLong(SOURCE_KEY)) as? HttpSource)?.let { source ->
headers = source.headers.toMultimap().mapValues { it.value.getOrNull(0) ?: "" }.toMutableMap()
}