diff --git a/src/services/storage/applicationStorage.ts b/src/services/storage/applicationStorage.ts index 6ce542e5..218b3bb6 100644 --- a/src/services/storage/applicationStorage.ts +++ b/src/services/storage/applicationStorage.ts @@ -62,7 +62,7 @@ export default class { async GetApplicationUser(appId: string, userIdentifier: string, entityManager = this.DB): Promise { const found = await this.GetApplicationUserIfExists(appId, userIdentifier, entityManager) if (!found) { - throw new Error(`application user ${userIdentifier} not found`) + throw new Error(`application user not found`) } if (found.application.app_id !== appId) {