Skip to content

Commit

Permalink
Scrub password from NS IDENTIFY debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoffrey Broadwell committed Dec 27, 2013
1 parent f97001c commit 219b4c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Net/IRC/Modules/Autoident.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class Net::IRC::Modules::Autoident {
has $.password = die "Need to tell Autoident your password if you want it to work!";
multi method connected($ev) {
say "Identifying with nickserv..";
$ev.conn.sendln("NS IDENTIFY $.password");
$ev.conn.sendln("NS IDENTIFY $.password", scrubbed => 'NS IDENTIFY ...');
}
}

Expand Down

0 comments on commit 219b4c0

Please sign in to comment.