Browse Source

Merge pull request #21015 from owncloud/update-redirecttocorrectpage

Redirect to correct URL after updating
tags/v9.0beta1
Thomas Müller 8 years ago
parent
commit
b15d77c934
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      core/js/update.js

+ 1
- 1
core/js/update.js View File

@@ -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);
}
});

Loading…
Cancel
Save