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