GlobalSearchScreen: Add unique key (#8693)

Avoids crash when an old screen is being replaced by a new one
This commit is contained in:
Ivan Iskandar 2022-12-07 20:27:54 +07:00 committed by GitHub
parent a3f3f9d562
commit f05e251991
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,7 @@ import androidx.compose.runtime.collectAsState
import androidx.compose.runtime.getValue
import cafe.adriel.voyager.core.model.rememberScreenModel
import cafe.adriel.voyager.core.screen.Screen
import cafe.adriel.voyager.core.screen.uniqueScreenKey
import cafe.adriel.voyager.navigator.LocalNavigator
import cafe.adriel.voyager.navigator.currentOrThrow
import eu.kanade.presentation.browse.GlobalSearchScreen
@ -16,6 +17,8 @@ class GlobalSearchScreen(
val extensionFilter: String = "",
) : Screen {
override val key = uniqueScreenKey
@Composable
override fun Content() {
val navigator = LocalNavigator.currentOrThrow