From e9b58f7820dc22879fea722b15791dcf6ea924d7 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Thu, 31 Jul 2014 19:17:27 +0000 Subject: [PATCH] =?UTF-8?q?RSS:=20Use=20queueMsg=20instead=20of=20sendMsg?= =?UTF-8?q?=20(flood=E2=80=A6)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/RSS/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/RSS/plugin.py b/plugins/RSS/plugin.py index 04e1dc8da..0978599a1 100644 --- a/plugins/RSS/plugin.py +++ b/plugins/RSS/plugin.py @@ -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)) ##########