瀏覽代碼

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) }
                 .subscribe { updateColumnsSummary(it.first, it.second) }
 
 
         updateInterval.setOnPreferenceChangeListener { preference, newValue ->
         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()
             val interval = (newValue as String).toInt()
-            if (interval > 0)
+            if (interval > 0) {
                 LibraryUpdateJob.setupTask(interval)
                 LibraryUpdateJob.setupTask(interval)
-            else
-                LibraryUpdateJob.cancelTask()
-
+            }
             true
             true
         }
         }