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; } }