mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 22:49:28 -07:00
Fix url encoding
This commit is contained in:
parent
75c8ce3626
commit
f05585bf60
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ const generateProxyURL = (type, urlElements, opts) => {
|
||||||
urlElements = [urlElements]
|
urlElements = [urlElements]
|
||||||
}
|
}
|
||||||
|
|
||||||
urlElements.map((x) => { encodeURIComponent(x) })
|
urlElements = urlElements.map((x) => { return encodeURIComponent(x) })
|
||||||
|
|
||||||
return `https://${
|
return `https://${
|
||||||
opts.doipProxyHostname
|
opts.doipProxyHostname
|
||||||
|
|
Loading…
Reference in a new issue