diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-08-10 11:14:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-10 11:14:03 +0200 |
commit | 7191d676ab53a7192f363e39e045dafc35d3405d (patch) | |
tree | e58ca7968a63b3bd6652d3f632cc7b57d08b6190 /core/js | |
parent | d2b9b78c70999628bd40a0767adf3c3980cc6fa6 (diff) | |
parent | 4823b2746e0c0e2076a1f99f07c75c9cacf306ee (diff) | |
download | nextcloud-server-7191d676ab53a7192f363e39e045dafc35d3405d.tar.gz nextcloud-server-7191d676ab53a7192f363e39e045dafc35d3405d.zip |
Merge pull request #10619 from nextcloud/bugfix/4550/redirect-page-update
Redirect to the same page after an update
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/update.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/update.js b/core/js/update.js index 9562c7b2e47..eb65336229e 100644 --- a/core/js/update.js +++ b/core/js/update.js @@ -107,7 +107,7 @@ } setTimeout(function () { - OC.redirect(OC.webroot + '/'); + OC.redirect(window.location.href); }, 3000); } }); |