mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 20:31:02 -05:00
Avoid invalid unset default browser (fixes #6520)
This commit is contained in:
parent
5cd11ad8c3
commit
7de707c60a
1 changed files with 4 additions and 2 deletions
|
@ -293,7 +293,7 @@ fun Context.openInBrowser(uri: Uri, @ColorInt toolbarColor: Int? = null) {
|
|||
)
|
||||
.build()
|
||||
// Force default browser so that verified extensions don't re-open Tachiyomi
|
||||
intent.intent.setPackage(defaultBrowserPackageName())
|
||||
defaultBrowserPackageName()?.let { intent.intent.setPackage(it) }
|
||||
intent.launchUrl(this, uri)
|
||||
} catch (e: Exception) {
|
||||
toast(e.message)
|
||||
|
@ -302,7 +302,9 @@ fun Context.openInBrowser(uri: Uri, @ColorInt toolbarColor: Int? = null) {
|
|||
|
||||
fun Context.defaultBrowserPackageName(): String? {
|
||||
val browserIntent = Intent(Intent.ACTION_VIEW, Uri.parse("http://"))
|
||||
return packageManager.resolveActivity(browserIntent, PackageManager.MATCH_DEFAULT_ONLY)?.activityInfo?.packageName
|
||||
return packageManager.resolveActivity(browserIntent, PackageManager.MATCH_DEFAULT_ONLY)
|
||||
?.activityInfo?.packageName
|
||||
?.takeIf { it != "android" }
|
||||
}
|
||||
|
||||
fun Context.createFileInCacheDir(name: String): File {
|
||||
|
|
Loading…
Reference in a new issue