summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
authorPark Daesun <yume@yumes.net>2016-06-17 02:19:47 +0900
committerCorey Hulen <corey@hulen.com>2016-06-16 09:19:47 -0800
commitca138883ab5416706ee3eea866640add338c11f9 (patch)
treea72962480efeb0db5d8b27af6dc6225eb9858fc2 /webapp
parent54b4deb7df3e6af079157bd52ecd822bc9da3392 (diff)
downloadchat-ca138883ab5416706ee3eea866640add338c11f9.tar.gz
chat-ca138883ab5416706ee3eea866640add338c11f9.tar.bz2
chat-ca138883ab5416706ee3eea866640add338c11f9.zip
Remove the unnecessary comma (#3351)
It is not error, but It is unnecessary
Diffstat (limited to 'webapp')
-rw-r--r--webapp/actions/global_actions.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/actions/global_actions.jsx b/webapp/actions/global_actions.jsx
index 0c07173ac..c4551a683 100644
--- a/webapp/actions/global_actions.jsx
+++ b/webapp/actions/global_actions.jsx
@@ -480,6 +480,6 @@ export function emitJoinChannelEvent(channel, success, failure) {
Client.joinChannel(
channel.id,
success,
- failure,
+ failure
);
}