0
0
Fork 0

Fix decoding string

This commit is contained in:
Tyler-A 2020-04-20 15:49:08 -06:00
parent f34b4f2cb3
commit d33f37473f

View file

@ -12,7 +12,7 @@ export const WRITE_MSG_ID = (new_id: string) => {
export const LOAD_USED_QUOTES = (): string[] => {
return JSON.parse(fs.readFileSync(`./${DB_NAME}`, `utf`));
return JSON.parse(fs.readFileSync(`./${DB_NAME}`, `utf8`));
};