summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/react/utils/client.jsx10
1 files changed, 6 insertions, 4 deletions
diff --git a/web/react/utils/client.jsx b/web/react/utils/client.jsx
index 4433df5cf..5e9d395c8 100644
--- a/web/react/utils/client.jsx
+++ b/web/react/utils/client.jsx
@@ -280,16 +280,18 @@ module.exports.getMeSynchronous = function(success, error) {
url: "/api/v1/users/me",
dataType: 'json',
contentType: 'application/json',
- //cache: false,
type: 'GET',
success: function(data, textStatus, xhr) {
current_user = data;
if (success) success(data, textStatus, xhr);
},
error: function(xhr, status, err) {
- if (/*xhr.status != 200 && */error) {
- e = handleError("getMeSynchronous", xhr, status, err);
- error(e);
+ var ieChecker = window.navigator.userAgent;
+ if (xhr.status != 200 || !(ieChecker.indexOf("Trident/7.0") > 0 || ieChecker.indexOf("Trident/6.0") > 0)) {
+ if (error) {
+ e = handleError("getMeSynchronous", xhr, status, err);
+ error(e);
+ };
};
}
});