diff options
author | Tom Feist <shabble@metavore.org> | 2011-04-08 19:52:15 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-04-08 19:52:15 +0000 |
commit | 77570a1f815b8f239711e165439194c11c46206e (patch) | |
tree | 3638767f8649e259f6689b2521ec69161a1c35e5 /quit-notify/notifyquit.pl | |
parent | vim_mode: ex_hist documentation additions and cleanup. (diff) | |
download | irssi-scripts-77570a1f815b8f239711e165439194c11c46206e.tar.gz irssi-scripts-77570a1f815b8f239711e165439194c11c46206e.zip |
notifyquit: add 'ftp' to the blacklist since it's a common prefix which is
(hopefully) unlikely to be a nick.
Diffstat (limited to '')
-rw-r--r-- | quit-notify/notifyquit.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quit-notify/notifyquit.pl b/quit-notify/notifyquit.pl index 501ce88..6201c73 100644 --- a/quit-notify/notifyquit.pl +++ b/quit-notify/notifyquit.pl @@ -91,7 +91,7 @@ sub sig_send_text { if ($target_nick) { if (not $witem->nick_find($target_nick)) { - return if $target_nick =~ m/^https?/i; + return if $target_nick =~ m/^(?:https?)|ftp/i; if ($permit_pending) { |