Fix misnamed variable in setChannelTopic (#403)

This commit is contained in:
Meishu
2016-06-03 18:31:34 -07:00
committed by abal
parent 2ac679c169
commit 2bd7d9dc24
2 changed files with 2 additions and 2 deletions

View File

@@ -1302,7 +1302,7 @@ export default class InternalClient {
}
//def setChannelTopic
setChannelTopic(chann, topic = "") {
setChannelTopic(channel, topic = "") {
topic = topic || "";
return this.updateChannel(channel, {topic: topic});