Use lowercase in redirect to Web K (#3897)

This commit is contained in:
Alexander Zinchuk 2023-09-28 01:53:55 +02:00
parent 7b3e257a11
commit d4d3d70463

View File

@ -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() {