just use adapter

This commit is contained in:
Kyle Spearrin 2018-10-09 15:31:52 -04:00
parent 2870b7472b
commit dcef50bd8f
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ export class LowdbStorageService implements StorageService {
this.db = lowdb(adapter);
} catch (e) {
if (e instanceof SyntaxError) {
fs.writeFileSync(this.dataFilePath, '');
adapter.write({});
this.db = lowdb(adapter);
} else {
throw e;