From 17a8636de70438af6897a67240e88499f9904b8a Mon Sep 17 00:00:00 2001 From: Nyo Date: Sun, 4 Sep 2016 17:53:12 +0200 Subject: [PATCH] .BANCHO. .FIX. Fix some issues with spaced usernames on IRC --- irc/ircserver.py | 1 + 1 file changed, 1 insertion(+) diff --git a/irc/ircserver.py b/irc/ircserver.py index f478d28..613ec4f 100644 --- a/irc/ircserver.py +++ b/irc/ircserver.py @@ -435,6 +435,7 @@ class Client: message = arguments[1] # Send the message to bancho and reply + recipient = chat.fixUsernameForBancho(recipient) response = chat.sendMessage(self.banchoUsername, recipient, message, toIRC=False) if response == 404: self.replyCode(404, "Cannot send to channel", channel=recipient)