chore: changing boolean strategy on migration

This commit is contained in:
Chubby Granny Chaser
2025-01-22 13:40:17 +00:00
parent 93fc486e90
commit a839e5166b
2 changed files with 15 additions and 3 deletions

View File

@@ -68,9 +68,6 @@ export interface GameAchievement {
export interface UserPreferences {
downloadsPath: string | null;
language: string;
downloadNotificationsEnabled: boolean;
repackUpdatesNotificationsEnabled: boolean;
achievementNotificationsEnabled: boolean;
realDebridApiToken: string | null;
preferQuitInsteadOfHiding: boolean;
runAtStartup: boolean;
@@ -78,4 +75,7 @@ export interface UserPreferences {
disableNsfwAlert: boolean;
seedAfterDownloadComplete: boolean;
showHiddenAchievementsDescription: boolean;
downloadNotificationsEnabled: boolean;
repackUpdatesNotificationsEnabled: boolean;
achievementNotificationsEnabled: boolean;
}