Make the irc gateway not receive the last empty line on multiline messages.

This commit is contained in:
goeo_
2017-08-20 18:01:18 +03:00
parent 60fe2bc56e
commit 36d701eac1
2 changed files with 4 additions and 2 deletions

View File

@@ -256,6 +256,8 @@ def sendMessage(fro = "", to = "", message = "", token = None, toIRC = True):
if glob.irc == True and toIRC == True:
messageSplitInLines = message.encode("latin-1").decode("utf-8").split("\n")
for line in messageSplitInLines:
if line == messageSplitInLines[:1] and line == "":
continue
glob.ircServer.banchoMessage(fro, to, line)
# Spam protection (ignore FokaBot)