RSS: Use queueMsg instead of sendMsg (flood…)

This commit is contained in:
Valentin Lorentz 2014-07-31 19:17:27 +00:00
parent 784b534a3d
commit e9b58f7820

View File

@ -273,7 +273,7 @@ class RSS(callbacks.Plugin):
def announce_entry(self, irc, channel, feed, entry):
if self.should_send_entry(channel, entry):
s = self.format_entry(channel, feed, entry, True)
irc.sendMsg(ircmsgs.privmsg(channel, s))
irc.queueMsg(ircmsgs.privmsg(channel, s))
##########