build: upgrade lowdb (#689)

This commit is contained in:
Alex Christoffer Rasmussen
2024-01-02 20:27:10 +01:00
committed by GitHub
parent 3d9a9a2226
commit a567fdc446
4 changed files with 29 additions and 152 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ class ConfigService {
constructor() {
this.configPath = join(getAppDataPath(), 'config.json');
const adapter = new JSONFile<Config>(this.configPath);
this.config = new Low<Config>(adapter);
this.config = new Low<Config>(adapter, null);
this.init();
}