We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 18d856a + b34cd07 commit bac6708Copy full SHA for bac6708
1 file changed
plugins/tell.py
@@ -88,7 +88,7 @@ def add_tell(db, server, sender, target, message):
88
89
def tell_check(conn, nick):
90
for _conn, _target in tell_cache:
91
- if (conn, nick) == (_conn, _target):
+ if (conn, nick.lower()) == (_conn, _target):
92
return True
93
else:
94
continue
0 commit comments