diff options
author | Tom Feist <shabble@metavore.org> | 2011-05-24 17:15:24 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-05-24 17:15:24 +0000 |
commit | 5e2265919db3fa570a1d3862462faf8c984ec655 (patch) | |
tree | dc4eade08961f30eca9eca0dfd2263dbc9e4cb67 /quit-notify/notifyquit.pl | |
parent | brought in changes in readme and deployment stuff from branch where it should... (diff) | |
download | irssi-scripts-5e2265919db3fa570a1d3862462faf8c984ec655.tar.gz irssi-scripts-5e2265919db3fa570a1d3862462faf8c984ec655.zip |
notifyquit: oops, wrong branch. Now merged to master
Diffstat (limited to 'quit-notify/notifyquit.pl')
-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 335d8f4..3958a39 100644 --- a/quit-notify/notifyquit.pl +++ b/quit-notify/notifyquit.pl @@ -195,7 +195,7 @@ sub sig_send_text { return unless($witem); - return unless $witem->{type} eq 'CHANNEL'; + return unless ref $witem eq "HASH" && $witem->{type} eq 'CHANNEL'; # shouldn't need escaping, but it doesn't hurt to be paranoid. my $target_nick = extract_nick($data); |