fix: Link not opening. #178

Merged
AmineB merged 4 commits from fix-open-link into master 2025-01-24 21:48:16 +00:00
Showing only changes of commit 44f9dd53d3 - Show all commits

View File

@ -160,7 +160,7 @@ class ArticleFragment :
}.create()
.show()
} catch (e: IllegalStateException) {
e.sendSilentlyWithAcraWithName("Context required is null")
e.sendSilentlyWithAcraWithName("OnCreate context required is null")
}
}
@ -226,7 +226,7 @@ class ArticleFragment :
).show()
}
} catch (e: IllegalStateException) {
e.sendSilentlyWithAcraWithName("Context required is null")
e.sendSilentlyWithAcraWithName("Toolbar context required is null")
}
else -> Unit
@ -378,7 +378,7 @@ class ArticleFragment :
try {
context = requireContext()
} catch (e: IllegalStateException) {
e.sendSilentlyWithAcraWithName("Context required is null")
e.sendSilentlyWithAcraWithName("Webview context required is null")
return
}
@ -543,7 +543,7 @@ class ArticleFragment :
try {
requireContext().openItemUrlInBrowserAsNewTask(this@ArticleFragment.item)
} catch (e: IllegalStateException) {
e.sendSilentlyWithAcraWithName("Context required is null")
e.sendSilentlyWithAcraWithName("After failing context required is null")
}
}