Fix spaces in screen URLs
This commit is contained in:
parent
4a4d776c02
commit
c9ef46d2bf
|
@ -3,13 +3,14 @@ export default function (url) {
|
||||||
.split("/")
|
.split("/")
|
||||||
.map(part => {
|
.map(part => {
|
||||||
part = decodeURIComponent(part)
|
part = decodeURIComponent(part)
|
||||||
|
part = part.replace(/ /g, "-")
|
||||||
|
|
||||||
// If parameter, then use as is
|
// If parameter, then use as is
|
||||||
if (!part.startsWith(":")) {
|
if (!part.startsWith(":")) {
|
||||||
part = encodeURIComponent(part)
|
part = encodeURIComponent(part)
|
||||||
}
|
}
|
||||||
|
|
||||||
return part.replace(/ /g, "-")
|
return part
|
||||||
})
|
})
|
||||||
.join("/")
|
.join("/")
|
||||||
.toLowerCase()
|
.toLowerCase()
|
||||||
|
|
Loading…
Reference in New Issue