From 7c9675269d6f28c0925c4b5dbbaec27d1f1d4f77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phan=20Kochen?= Date: Fri, 16 Jan 2004 23:37:37 +0000 Subject: [PATCH] Case insensitive. --- plugins/RSS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/RSS.py b/plugins/RSS.py index afeb8d1ff..90f5697f9 100644 --- a/plugins/RSS.py +++ b/plugins/RSS.py @@ -107,7 +107,7 @@ class RSS(callbacks.Privmsg, configurable.Mixin): bold = self.configurables.get('announce-news-bold', channel) prefix = self.configurables.get('announce-news-prefix', channel) for name in d: - if self.isCommand(name): + if self.isCommand(callbacks.canonicalName(name)): url = self.getCommand(name).url else: url = name