get_title.pl: remove trailing non-word character

This commit is contained in:
Pragmatic Software 2015-01-23 13:49:16 -08:00
parent 5f9dd151e2
commit 340cf07558
1 changed files with 3 additions and 1 deletions

View File

@ -13,7 +13,9 @@ if ($#ARGV <= 0)
}
my $nick = shift(@ARGV);
$arguments = join("%20", @ARGV);
my $arguments = join("%20", @ARGV);
$arguments =~ s/\W$//;
exit if $arguments =~ m/explosm.net/i;
exit if $arguments =~ m/stackoverflow.com/i;