mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-18 08:02:49 +01:00
Fix factoids bug ,Factoids.showFactoidIfOnlyOneMatch feature is broken when used off-channel:
https://sourceforge.net/tracker/?func=detail&aid=2965589&group_id=58965&atid=489447
This commit is contained in:
parent
7f9a113060
commit
643be43466
@ -661,7 +661,7 @@ class Factoids(callbacks.Plugin, plugins.ChannelDBHandler):
|
|||||||
irc.reply('No keys matched that query.')
|
irc.reply('No keys matched that query.')
|
||||||
elif len(results) == 1 and \
|
elif len(results) == 1 and \
|
||||||
self.registryValue('showFactoidIfOnlyOneMatch', channel):
|
self.registryValue('showFactoidIfOnlyOneMatch', channel):
|
||||||
self.whatis(irc, msg, [results[0][0]])
|
self.whatis(irc, msg, [channel, results[0][0]])
|
||||||
elif len(results) > 100:
|
elif len(results) > 100:
|
||||||
irc.reply('More than 100 keys matched that query; '
|
irc.reply('More than 100 keys matched that query; '
|
||||||
'please narrow your query.')
|
'please narrow your query.')
|
||||||
|
Loading…
Reference in New Issue
Block a user