summaryrefslogtreecommitdiffstats
path: root/web/react/utils/client.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-08-11 16:52:36 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-08-11 16:53:15 -0400
commitd35065d6fd8237468ee3aa63bfba3b2aa29bc4af (patch)
treeff393b44db60ad97ecc203e6424aeab19ac269e2 /web/react/utils/client.jsx
parent37909f52ad4f9cca9ffecd008956912b4a6cf5c7 (diff)
downloadchat-d35065d6fd8237468ee3aa63bfba3b2aa29bc4af.tar.gz
chat-d35065d6fd8237468ee3aa63bfba3b2aa29bc4af.tar.bz2
chat-d35065d6fd8237468ee3aa63bfba3b2aa29bc4af.zip
Reformatted code to match the style guide
Diffstat (limited to 'web/react/utils/client.jsx')
-rw-r--r--web/react/utils/client.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/utils/client.jsx b/web/react/utils/client.jsx
index 5b5d8dc32..6ae25c66d 100644
--- a/web/react/utils/client.jsx
+++ b/web/react/utils/client.jsx
@@ -862,8 +862,8 @@ module.exports.isEmailEnabledSynchronous = function() {
enabled = !value;
},
error: function(xhr, status, err) {
- if (status != 200) {
- handleError("isEmailEnabled", xhr, status, err);
+ if (status !== '200') {
+ handleError('isEmailEnabled', xhr, status, err);
}
}
});