mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 08:57:48 +01:00
Avoid crashing in SourcePreferencesScreen if source can't be loaded
(cherry picked from commit 4efca04765
)
This commit is contained in:
parent
79323de326
commit
aa2ec5940f
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class SourcePreferencesScreen(val sourceId: Long) : Screen {
|
|||
Scaffold(
|
||||
topBar = {
|
||||
TopAppBar(
|
||||
title = { Text(text = Injekt.get<SourceManager>().get(sourceId)!!.toString()) },
|
||||
title = { Text(text = Injekt.get<SourceManager>().getOrStub(sourceId).toString()) },
|
||||
navigationIcon = {
|
||||
IconButton(onClick = navigator::pop) {
|
||||
Icon(
|
||||
|
|
Loading…
Reference in a new issue