From 8805fee06321fbe6831e7f0647d5d5a23e48ae4a Mon Sep 17 00:00:00 2001 From: gras Date: Wed, 3 Apr 2024 22:56:21 +0200 Subject: [PATCH] linting fix --- src/common/Utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/Utils.ts b/src/common/Utils.ts index dcb013a4..7b30703e 100644 --- a/src/common/Utils.ts +++ b/src/common/Utils.ts @@ -145,7 +145,7 @@ export class Utils { static timestampToOffsetString(timestamp: string) { try { const offsetRegex = /[+-]\d{2}:\d{2}$/; - var match = timestamp.match(offsetRegex); + let match = timestamp.match(offsetRegex); if (match) { return match[0]; } else if (timestamp.indexOf("Z") > 0) {