From d4d3d70463b462666b1a868b4465243aa015a493 Mon Sep 17 00:00:00 2001 From: Alexander Zinchuk Date: Thu, 28 Sep 2023 01:53:55 +0200 Subject: [PATCH] Use lowercase in redirect to Web K (#3897) --- src/util/permanentWebVersion.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/permanentWebVersion.ts b/src/util/permanentWebVersion.ts index dba30b135..bcc662d57 100644 --- a/src/util/permanentWebVersion.ts +++ b/src/util/permanentWebVersion.ts @@ -27,7 +27,7 @@ export function switchPermanentWebVersion(version: AvailableVersions) { setPermanentWebVersion(version); clearWebsync(); getActions().skipLockOnUnload(); - window.location.assign(`${WEB_VERSION_BASE}${version}`); + window.location.assign(`${WEB_VERSION_BASE}${version.toLowerCase()}`); } export function checkAndAssignPermanentWebVersion() {