fix: decode url and path before saving to collection - fixed #1451
This commit is contained in:
@@ -1854,8 +1854,8 @@ export default {
|
|||||||
}
|
}
|
||||||
let urlAndPath = parseUrlAndPath(this.uri)
|
let urlAndPath = parseUrlAndPath(this.uri)
|
||||||
this.editRequest = {
|
this.editRequest = {
|
||||||
url: urlAndPath.url,
|
url: decodeURI(urlAndPath.url),
|
||||||
path: urlAndPath.path,
|
path: decodeURI(urlAndPath.path),
|
||||||
method: this.method,
|
method: this.method,
|
||||||
auth: this.auth,
|
auth: this.auth,
|
||||||
httpUser: this.httpUser,
|
httpUser: this.httpUser,
|
||||||
|
|||||||
Reference in New Issue
Block a user