diff --git a/plugins/Factoids/plugin.py b/plugins/Factoids/plugin.py index 707e72023..2526eb730 100644 --- a/plugins/Factoids/plugin.py +++ b/plugins/Factoids/plugin.py @@ -661,7 +661,7 @@ class Factoids(callbacks.Plugin, plugins.ChannelDBHandler): irc.reply('No keys matched that query.') elif len(results) == 1 and \ self.registryValue('showFactoidIfOnlyOneMatch', channel): - self.whatis(irc, msg, [results[0][0]]) + self.whatis(irc, msg, [channel, results[0][0]]) elif len(results) > 100: irc.reply('More than 100 keys matched that query; ' 'please narrow your query.')