summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-12-07 19:55:45 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-12-07 19:55:45 +0100
commitb15d77c93459743e5e3e29ebefeba0d6fca11b96 (patch)
tree011555e78920a711171d3e3729900f2f96769f59 /core/js
parent4100263bd6c39c48625ffc13997f37c056700f00 (diff)
parent69ab047f89359c21c60cd2eb42d62198b6d11b27 (diff)
downloadnextcloud-server-b15d77c93459743e5e3e29ebefeba0d6fca11b96.tar.gz
nextcloud-server-b15d77c93459743e5e3e29ebefeba0d6fca11b96.zip
Merge pull request #21015 from owncloud/update-redirecttocorrectpage
Redirect to correct URL after updating
Diffstat (limited to 'core/js')
-rw-r--r--core/js/update.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/update.js b/core/js/update.js
index 090f8fa5d23..1626b6f2c49 100644
--- a/core/js/update.js
+++ b/core/js/update.js
@@ -84,7 +84,7 @@
.append(t('core', 'The update was successful. Redirecting you to ownCloud now.'))
.appendTo($el);
setTimeout(function () {
- OC.redirect(OC.webroot);
+ OC.redirect(OC.webroot + '/');
}, 3000);
}
});