Fix wrong if check CHECK_CHAPTERS_BEFORE_START

This commit is contained in:
2025-10-03 20:18:41 +02:00
parent 71d5116323
commit 6a7f3285d1

View File

@@ -58,7 +58,7 @@ public static class Tranga
AddWorker(RemoveOldNotificationsWorker);
AddWorker(UpdateCoversWorker);
if(!Constants.UpdateChaptersDownloadedBeforeStarting)
if(Constants.UpdateChaptersDownloadedBeforeStarting)
AddWorker(UpdateChaptersDownloadedWorker);
}