fix Hiro's fuckups again

merge-requests/25/merge
Matthew 2021-04-01 23:16:48 -04:00
parent f68fff2a8b
commit cb11be7602
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,6 @@
/* eslint-disable no-constant-condition */
import { promises as fs, accessSync, constants, writeFileSync } from 'fs';
import { promisify } from 'util';
import { join } from 'path';
import { gzip, gzipSync, unzip } from 'zlib';
type JSONData = [{ key: string, value: any }?];
@ -19,7 +18,7 @@ export default class LocalStorage {
private locked: boolean = false;
constructor(dbName: string, dir = `${__dirname}/../../localstorage`) {
this.storagePath = join(__dirname, '../../localstorage') || dir;
this.storagePath = `${dir}/${dbName}.json.gz`;
this.init();
}