Fix nick comparison
This commit is contained in:
parent
1e8fc2fb96
commit
3d8940ab4e
1 changed files with 1 additions and 1 deletions
|
|
@ -82,4 +82,4 @@ class BotManager():
|
||||||
"""
|
"""
|
||||||
|
|
||||||
return {bot_id: bot for bot_id, bot in self.bots.items()
|
return {bot_id: bot for bot_id, bot in self.bots.items()
|
||||||
if bot.roomname() == room and bot.mentionable() == nick}
|
if bot.roomname() == room and bot.mentionable().lower() == nick.lower()}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue