From 190f2358fd2fb3c4f0d8e1f184ac74ca493d8042 Mon Sep 17 00:00:00 2001 From: Nils Streijffert Date: Thu, 4 Feb 2021 15:05:34 +0100 Subject: [PATCH] Update plugins/auth-backend/src/identity/TokenFactory.ts Co-authored-by: Himanshu Mishra --- plugins/auth-backend/src/identity/TokenFactory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/auth-backend/src/identity/TokenFactory.ts b/plugins/auth-backend/src/identity/TokenFactory.ts index 963251f42b..99ea26a7fb 100644 --- a/plugins/auth-backend/src/identity/TokenFactory.ts +++ b/plugins/auth-backend/src/identity/TokenFactory.ts @@ -117,7 +117,7 @@ export class TokenFactory implements TokenIssuer { } private async getKey(): Promise { - // Make sure that we only generate one key at a time¨ + // Make sure that we only generate one key at a time if (this.privateKeyPromise) { if (this.keyExpiry && this.keyExpiry > DateTime.local()) { return this.privateKeyPromise;