mirror of
https://github.com/pragma-/pbot.git
synced 2024-12-24 19:52:34 +01:00
Add more ignore criteria for URL titles
This commit is contained in:
parent
95da60fc1d
commit
3b8974544e
@ -18,6 +18,7 @@ my $arguments = join("%20", @ARGV);
|
||||
|
||||
$arguments =~ s/\W$//;
|
||||
|
||||
exit if $arguments =~ m{wandbox}i;
|
||||
exit if $arguments =~ m{ebay.com/itm}i;
|
||||
exit if $arguments =~ m/prntscr.com/i;
|
||||
exit if $arguments =~ m/imgbin.org/i;
|
||||
@ -131,10 +132,14 @@ if($distance / $length < 0.75) {
|
||||
exit if $t !~ m/\s/; # exit if title is only one word -- this isn't usually interesting
|
||||
exit if $t =~ m/^Gerrit Code Review$/i;
|
||||
exit if $t =~ m/^Public Git Hosting -/i;
|
||||
exit if $t =~ m/- Google Search$/;
|
||||
exit if $t =~ m/linux cross reference/i;
|
||||
exit if $t =~ m/screenshot/i;
|
||||
exit if $t =~ m/pastebin/i;
|
||||
exit if $t =~ m/paste/i;
|
||||
exit if $t =~ m/^[0-9_-]+$/;
|
||||
exit if $t =~ m/^Index of \S+$/;
|
||||
exit if $t =~ m/(?:sign up|login)/i;
|
||||
|
||||
my @data;
|
||||
if (open my $fh, "<", "last-title-$nick.dat") {
|
||||
|
Loading…
Reference in New Issue
Block a user