3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 01:48:38 +02:00

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

View File

@ -13,7 +13,9 @@ if ($#ARGV <= 0)
} }
my $nick = shift(@ARGV); 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/explosm.net/i;
exit if $arguments =~ m/stackoverflow.com/i; exit if $arguments =~ m/stackoverflow.com/i;