about summary refs log tree commit homepage
path: root/lib/PublicInbox/Hval.pm
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-04-07 21:55:54 +0000
committerEric Wong <e@yhbt.net>2020-04-09 05:41:57 +0000
commit4da62f284003d75abe7cb35594414eb2224f42bc (patch)
treedd25b2c4be46c954176c2a85f14e13709bf5d5dd /lib/PublicInbox/Hval.pm
parentcffc7d4fc1c36169654f8447b23b3c5c43830eed (diff)
downloadpublic-inbox-4da62f284003d75abe7cb35594414eb2224f42bc.tar.gz
Dikshunarees R gude!
Diffstat (limited to 'lib/PublicInbox/Hval.pm')
-rw-r--r--lib/PublicInbox/Hval.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/Hval.pm b/lib/PublicInbox/Hval.pm
index 23233f0e..46a83916 100644
--- a/lib/PublicInbox/Hval.pm
+++ b/lib/PublicInbox/Hval.pm
@@ -80,7 +80,7 @@ sub obfuscate_addrs ($$;$) {
         my $ibx = $_[0];
         my $repl = $_[2] // '&#8226;';
         my $re = $ibx->{-no_obfuscate_re}; # regex of domains
-        my $addrs = $ibx->{-no_obfuscate}; # { adddress => 1 }
+        my $addrs = $ibx->{-no_obfuscate}; # { $address => 1 }
         $_[1] =~ s/(([\w\.\+=\-]+)\@([\w\-]+\.[\w\.\-]+))/
                 my ($addr, $user, $domain) = ($1, $2, $3);
                 if ($addrs->{$addr} || ((defined $re && $domain =~ $re))) {