summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_list.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2015-07-16 09:48:20 -0400
committerJoram Wilander <jwawilander@gmail.com>2015-07-16 09:48:20 -0400
commitb236079d936e7f7af648b362d11b491fc0a2c428 (patch)
treec82021843497aa025414960dccc03c6a41fc4327 /web/react/components/post_list.jsx
parent3e31a9383d46b2c18efec893f779e8046ad1d828 (diff)
parent6e5126ba1d273e9576923a65d5b614314970f99f (diff)
downloadchat-b236079d936e7f7af648b362d11b491fc0a2c428.tar.gz
chat-b236079d936e7f7af648b362d11b491fc0a2c428.tar.bz2
chat-b236079d936e7f7af648b362d11b491fc0a2c428.zip
Merge pull request #175 from ralder/fix-dispatchError
[webui] fix incorrect call for AsyncClient.dispatchError
Diffstat (limited to 'web/react/components/post_list.jsx')
-rw-r--r--web/react/components/post_list.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/post_list.jsx b/web/react/components/post_list.jsx
index 9349d0240..98491976f 100644
--- a/web/react/components/post_list.jsx
+++ b/web/react/components/post_list.jsx
@@ -265,7 +265,7 @@ module.exports = React.createClass({
},
function(err) {
$(self.refs.loadmore.getDOMNode()).text("Load more messages");
- dispatchError(err, "getPosts");
+ AsyncClient.dispatchError(err, "getPosts");
}
);
},