Explorar o código

Always cancel library update task

len %!s(int64=8) %!d(string=hai) anos
pai
achega
ea790faeb3

+ 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
         }