From a1f096018c4fb2e8ad573437f29afe547e9b665a Mon Sep 17 00:00:00 2001 From: Davinci Date: Tue, 14 May 2024 16:59:13 +0200 Subject: [PATCH] chore: error message dots --- src/types/errors/DecryptionError.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/errors/DecryptionError.ts b/src/types/errors/DecryptionError.ts index 58117ab..05ee071 100644 --- a/src/types/errors/DecryptionError.ts +++ b/src/types/errors/DecryptionError.ts @@ -7,7 +7,7 @@ export class DecryptionError extends Error { super() if (inputError.message.toLowerCase().includes('expected')) { - this.message = `The decryption key length or format is invalid` + this.message = `The decryption key length or format is invalid.` } else if (inputError.message.includes('The JWK "alg" member was inconsistent')) { this.message = `The decryption key is invalid.` } else {