mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-11 20:52:42 +01:00
Later: Strip duplicate nicks given to @tell to avoid spam.
Suggested by @cottongin but implemented differently. Closes GH-1261.
This commit is contained in:
parent
0f14c1c654
commit
1e7c3007e0
@ -159,7 +159,7 @@ class Later(callbacks.Plugin):
|
||||
"""
|
||||
self._deleteExpired()
|
||||
validnicks = []
|
||||
for nick in nicks:
|
||||
for nick in set(nicks): # Ignore duplicates
|
||||
if ircutils.strEqual(nick, irc.nick):
|
||||
irc.error(_('I can\'t send notes to myself.'))
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user