i am an idiot (forces tgui store update) (#4300)

* Update storage.js

* Update storage.js
This commit is contained in:
silicons
2022-08-03 09:05:22 -07:00
committed by GitHub
parent 7dffc24138
commit 073bce9c6a

View File

@@ -10,9 +10,9 @@ export const IMPL_MEMORY = 0;
export const IMPL_LOCAL_STORAGE = 1;
export const IMPL_INDEXED_DB = 2;
const INDEXED_DB_VERSION = 1;
const INDEXED_DB_VERSION = 3;
const INDEXED_DB_NAME = 'tgui-citadel-rp';
const INDEXED_DB_STORE_NAME = 'tgui-store-citadel-rp';
const INDEXED_DB_STORE_NAME = 'tgui-storage';
const READ_ONLY = 'readonly';
const READ_WRITE = 'readwrite';