diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-03-22 16:55:43 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-04-01 16:55:40 +0200 |
commit | d8261d41cc7777c460a0a240b2b6291b7962b1b9 (patch) | |
tree | 452407d94de9ab70ac972acbdf504172487d6643 /core | |
parent | 752e6676e1c18eb269f4e2b19415c0f1f6c7c7cc (diff) | |
download | nextcloud-server-d8261d41cc7777c460a0a240b2b6291b7962b1b9.tar.gz nextcloud-server-d8261d41cc7777c460a0a240b2b6291b7962b1b9.zip |
Firefox returns 303 on cross-domain redirect
Added 303 to catch SSO cross-domain redirect in Firefox.
Diffstat (limited to 'core')
-rw-r--r-- | core/js/js.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/js.js b/core/js/js.js index 584bf1c1c83..1a3b532ed4c 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -747,7 +747,7 @@ var OC={ return; } - if (_.contains([0, 302, 307, 401], xhr.status)) { + if (_.contains([0, 302, 303, 307, 401], xhr.status)) { OC.reload(); } }, |