소스 검색

Fix incognito mode disabled after the app kicked out of memory (#5167)

The application class onCreate will also be called when user navigates to an
activity after the app process is killed by the system.

So make sure the incognito is disabled only when the entry point of the app is
created from scratch (e.g. after being force closed by the user).
Ivan Iskandar 3 년 전
부모
커밋
3c186a3c8d
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 3
      app/src/main/java/eu/kanade/tachiyomi/App.kt
  2. 3 0
      app/src/main/java/eu/kanade/tachiyomi/ui/main/MainActivity.kt

+ 0 - 3
app/src/main/java/eu/kanade/tachiyomi/App.kt

@@ -74,9 +74,6 @@ open class App : Application(), LifecycleObserver, ImageLoaderFactory {
 
         ProcessLifecycleOwner.get().lifecycle.addObserver(this)
 
-        // Reset Incognito Mode on relaunch
-        preferences.incognitoMode().set(false)
-
         // Show notification to disable Incognito Mode when it's enabled
         preferences.incognitoMode().asFlow()
             .onEach { enabled ->

+ 3 - 0
app/src/main/java/eu/kanade/tachiyomi/ui/main/MainActivity.kt

@@ -224,6 +224,9 @@ class MainActivity : BaseViewBindingActivity<MainActivityBinding>() {
         syncActivityViewWithController(router.backstack.lastOrNull()?.controller())
 
         if (savedInstanceState == null) {
+            // Reset Incognito Mode on relaunch
+            preferences.incognitoMode().set(false)
+
             // Show changelog prompt on update
             if (Migrations.upgrade(preferences) && !BuildConfig.DEBUG) {
                 WhatsNewDialogController().showDialog(router)