this is related to https://github.com/fluffle/goirc/pull/71: common irc server behaviour is to reply with an empty +

This commit is contained in:
John Soros 2015-12-02 17:05:05 +01:00 committed by Edmund Huber
parent 404151fe9d
commit 65539a593b

@ -105,9 +105,7 @@ func (channel *Channel) ModeString(client *Client) (str string) {
str += mode.String()
}
if len(str) > 0 {
str = "+" + str
}
str = "+" + str
// args for flags with args: The order must match above to keep
// positional arguments in place.