Fix: Derive Auto-Download List from Filter (#39)

This commit is contained in:
Youwes09
2026-04-23 11:27:54 -05:00
parent 63a829ddca
commit b12ff4cbaa
3 changed files with 28 additions and 8 deletions
+2
View File
@@ -85,12 +85,14 @@ export interface MangaPrefs {
deleteDelayHours: number; maxKeepChapters: number; pauseUpdates: boolean;
refreshInterval: "global" | "daily" | "weekly" | "manual";
preferredScanlator: string; scanlatorFilter: string[];
autoDownloadScanlators: string[];
}
export const DEFAULT_MANGA_PREFS: MangaPrefs = {
autoDownload: false, downloadAhead: 0, deleteOnRead: false,
deleteDelayHours: 0, maxKeepChapters: 0, pauseUpdates: false,
refreshInterval: "global", preferredScanlator: "", scanlatorFilter: [],
autoDownloadScanlators: [],
};
export interface Settings {