fix: decode url and path before saving to collection - fixed #1451
This commit is contained in:
parent
3dabd73e95
commit
bffdb39c02
1 changed files with 2 additions and 2 deletions
|
|
@ -1854,8 +1854,8 @@ export default {
|
|||
}
|
||||
let urlAndPath = parseUrlAndPath(this.uri)
|
||||
this.editRequest = {
|
||||
url: urlAndPath.url,
|
||||
path: urlAndPath.path,
|
||||
url: decodeURI(urlAndPath.url),
|
||||
path: decodeURI(urlAndPath.path),
|
||||
method: this.method,
|
||||
auth: this.auth,
|
||||
httpUser: this.httpUser,
|
||||
|
|
|
|||
Loading…
Reference in a new issue