Skip to content
Snippets Groups Projects
Commit d1ade95b authored by Nils Görs's avatar Nils Görs Committed by Sébastien Helleu
Browse files

stalker.pl 1.6.1: fix wrong variable name

parent 997454f9
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -20,6 +20,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# History:
# version 1.6.1:nils_2@freenode.#weechat
# 2018-01-11: fix: wrong variable name
#
# version 1.6:nils_2@freenode.#weechat
# 2018-01-09: add: use hook_process_hashtable() for /WHOIS
# : imp: use hook_process_hashtable() instead hook_process() for security reasons
Loading
Loading
@@ -105,7 +108,7 @@ use File::Spec;
use DBI;
 
my $SCRIPT_NAME = "stalker";
my $SCRIPT_VERSION = "1.6";
my $SCRIPT_VERSION = "1.6.1";
my $SCRIPT_AUTHOR = "Nils Görs <weechatter\@arcor.de>";
my $SCRIPT_LICENCE = "GPL3";
my $SCRIPT_DESC = "Records and correlates nick!user\@host information";
Loading
Loading
@@ -1311,7 +1314,7 @@ sub irc_in2_join_cb
"arg8" => $options{'max_recursion'},
"arg9" => $options{'ignore_guest_nicks'},
"arg10" => $options{'guest_nick_regex'},
}, 1000 * $options{'timeout'},"hook_process_get_nicks_records_cb","$nick $ptr_buffer $my_tags");
}, 1000 * $options{'timeout'},"hook_process_get_nicks_records_cb","$nick $buffer $my_tags");
 
}
return weechat::WEECHAT_RC_OK;
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment