summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-10-20 14:39:19 -0400
committerCorey Hulen <corey@hulen.com>2016-10-20 11:39:19 -0700
commit319ae6b38cf2c3647ae2f92f0b4c83fe4b378c65 (patch)
tree5ea11bc167363830833f05cc0d3c82e0af3c7b2d
parent0c663216cc52f6cccdab23a28d0420d4b30e7149 (diff)
downloadchat-319ae6b38cf2c3647ae2f92f0b4c83fe4b378c65.tar.gz
chat-319ae6b38cf2c3647ae2f92f0b4c83fe4b378c65.tar.bz2
chat-319ae6b38cf2c3647ae2f92f0b4c83fe4b378c65.zip
Increased ChannelStore max listeners to match other stores (#4277)
-rw-r--r--webapp/stores/channel_store.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/stores/channel_store.jsx b/webapp/stores/channel_store.jsx
index 4d3042be7..20e7c966f 100644
--- a/webapp/stores/channel_store.jsx
+++ b/webapp/stores/channel_store.jsx
@@ -19,7 +19,7 @@ class ChannelStoreClass extends EventEmitter {
constructor(props) {
super(props);
- this.setMaxListeners(15);
+ this.setMaxListeners(600);
this.currentId = null;
this.postMode = this.POST_MODE_CHANNEL;