diff --git a/src/main/settings.ts b/src/main/settings.ts index cebf689..e86cf17 100644 --- a/src/main/settings.ts +++ b/src/main/settings.ts @@ -53,7 +53,11 @@ class SettingsManager { } getAll(): AppSettings { - return this.store.store + return { + ...defaultSettings, + downloadPath: DEFAULT_DOWNLOAD_PATH, + ...this.store.store + } } setAll(settings: Partial): void {