fix: decode url and path before saving to collection - fixed #1451

This commit is contained in:
Liyas Thomas
2021-01-30 22:19:19 +05:30
parent 3dabd73e95
commit bffdb39c02

View File

@@ -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,