summaryrefslogtreecommitdiffstats
path: root/web/react/utils/client.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/utils/client.jsx')
-rw-r--r--web/react/utils/client.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/utils/client.jsx b/web/react/utils/client.jsx
index a43e4eec5..dd835e863 100644
--- a/web/react/utils/client.jsx
+++ b/web/react/utils/client.jsx
@@ -287,7 +287,7 @@ module.exports.getMeSynchronous = function(success, error) {
if (success) success(data, textStatus, xhr);
},
error: function(xhr, status, err) {
- if (error) {
+ if (xhr.status != 200 && error) {
e = handleError("getMeSynchronous", xhr, status, err);
error(e);
};