소스 검색

Always cancel library update task

len 8 년 전
부모
커밋
ea790faeb3
1개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제
  1. 5 4
      app/src/main/java/eu/kanade/tachiyomi/ui/setting/SettingsGeneralFragment.kt

+ 5 - 4
app/src/main/java/eu/kanade/tachiyomi/ui/setting/SettingsGeneralFragment.kt

@@ -57,12 +57,13 @@ class SettingsGeneralFragment : SettingsFragment(),
                 .subscribe { updateColumnsSummary(it.first, it.second) }
 
         updateInterval.setOnPreferenceChangeListener { preference, newValue ->
+            // Always cancel the previous task, it seems that sometimes they are not updated.
+            LibraryUpdateJob.cancelTask()
+
             val interval = (newValue as String).toInt()
-            if (interval > 0)
+            if (interval > 0) {
                 LibraryUpdateJob.setupTask(interval)
-            else
-                LibraryUpdateJob.cancelTask()
-
+            }
             true
         }