cleanup: rename session name to hydrogen as well

as we'll need people to resync because of account data as well
This commit is contained in:
Bruno Windels 2020-09-17 12:34:10 +02:00
parent b7401a148c
commit 1a105d391b

View file

@ -19,7 +19,7 @@ import { openDatabase, reqAsPromise } from "./utils.js";
import { exportSession, importSession } from "./export.js";
import { schema } from "./schema.js";
const sessionName = sessionId => `brawl_session_${sessionId}`;
const sessionName = sessionId => `hydrogen_session_${sessionId}`;
const openDatabaseWithSessionId = sessionId => openDatabase(sessionName(sessionId), createStores, schema.length);
export class StorageFactory {