mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 09:13:19 -04:00
Consider both hash params and query when parsing URL
This commit is contained in:
parent
d68079f932
commit
71dabc6c13
1 changed files with 1 additions and 3 deletions
|
|
@ -1773,9 +1773,7 @@ OC.Util.History = {
|
|||
params = OC.parseQueryString(this._decodeQuery(query));
|
||||
}
|
||||
// else read from query attributes
|
||||
if (!params) {
|
||||
params = OC.parseQueryString(this._decodeQuery(location.search));
|
||||
}
|
||||
params = _.extend(params || {}, OC.parseQueryString(this._decodeQuery(location.search)));
|
||||
return params || {};
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue