summaryrefslogtreecommitdiffstats
path: root/web/react/stores
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-07-10 11:26:35 -0800
committerCorey Hulen <corey@hulen.com>2015-07-10 11:26:35 -0800
commit5bb2acc996dc037b15e5a2e1f27b29c87a6bb9b0 (patch)
tree7fc64005c047e4a4f30e42fb89df7e8022418430 /web/react/stores
parentd124b9df109e55448aa2d3556a56d65e1c1982fd (diff)
parent184eac99ddd329fcd803f938f193572cc64f842e (diff)
downloadchat-5bb2acc996dc037b15e5a2e1f27b29c87a6bb9b0.tar.gz
chat-5bb2acc996dc037b15e5a2e1f27b29c87a6bb9b0.tar.bz2
chat-5bb2acc996dc037b15e5a2e1f27b29c87a6bb9b0.zip
Merge pull request #159 from rgarmsen2295/mm-1269b
MM-1269b Added yellow tinge to post and comment textbox when connection is disrupted
Diffstat (limited to 'web/react/stores')
-rw-r--r--web/react/stores/error_store.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/stores/error_store.jsx b/web/react/stores/error_store.jsx
index c20e15680..3aed6aef2 100644
--- a/web/react/stores/error_store.jsx
+++ b/web/react/stores/error_store.jsx
@@ -31,7 +31,7 @@ var ErrorStore = assign({}, EventEmitter.prototype, {
getLastError: function() {
var error = null;
try {
- error = JSON.parse(BrowserStore.last_error);
+ error = JSON.parse(BrowserStore.getItem("last_error"));
}
catch (err) {
}