only reload on errors when logged in
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
ac1bf3c2b7
commit
8a3b660969
|
@ -776,7 +776,7 @@ var OCP = {},
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_.contains([302, 303, 307, 401], xhr.status)) {
|
if (_.contains([302, 303, 307, 401], xhr.status) && OC.currentUser) {
|
||||||
// sometimes "beforeunload" happens later, so need to defer the reload a bit
|
// sometimes "beforeunload" happens later, so need to defer the reload a bit
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
if (!self._userIsNavigatingAway && !self._reloadCalled) {
|
if (!self._userIsNavigatingAway && !self._reloadCalled) {
|
||||||
|
|
Loading…
Reference in New Issue