Skip to content

Commit b34cd07

Browse files
committed
lowercase comparison
1 parent 6f046ce commit b34cd07

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/tell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def add_tell(db, server, sender, target, message):
8888

8989
def tell_check(conn, nick):
9090
for _conn, _target in tell_cache:
91-
if (conn, nick) == (_conn, _target):
91+
if (conn, nick.lower()) == (_conn, _target):
9292
return True
9393
else:
9494
continue

0 commit comments

Comments
 (0)