From c2a6b96fa5d78b4916802fa9242971f860bc4948 Mon Sep 17 00:00:00 2001 From: addison Date: Tue, 16 Nov 2021 09:58:20 -0500 Subject: [PATCH] [bug] Save appId as a top level storage item --- common/src/services/appId.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/services/appId.service.ts b/common/src/services/appId.service.ts index 73b4ef6f..c37668d1 100644 --- a/common/src/services/appId.service.ts +++ b/common/src/services/appId.service.ts @@ -16,13 +16,13 @@ export class AppIdService implements AppIdServiceAbstraction { } private async makeAndGetAppId(key: string) { - const existingId = await this.storageService.get('globals.' + key); + const existingId = await this.storageService.get(key); if (existingId != null) { return existingId; } const guid = Utils.newGuid(); - await this.storageService.save('globals.' + key, guid); + await this.storageService.save(key, guid); return guid; } }