Fix endless encoding loop with screen URLs

This commit is contained in:
Andrew Kingston 2022-04-07 12:23:17 +01:00
parent 43a8efc24d
commit 07c8bc4af8
1 changed files with 8 additions and 3 deletions

View File

@ -2,9 +2,14 @@ export default function (url) {
return url return url
.split("/") .split("/")
.map(part => { .map(part => {
// if parameter, then use as is part = decodeURIComponent(part)
if (part.startsWith(":")) return part
return encodeURIComponent(part.replace(/ /g, "-")) // If parameter, then use as is
if (!part.startsWith(":")) {
part = encodeURIComponent(part)
}
return part.replace(/ /g, "-")
}) })
.join("/") .join("/")
.toLowerCase() .toLowerCase()