From ab6ffc0a5eb62c86009fd10b072c003752a4a44b Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Mon, 6 Jul 2020 12:08:03 -0700 Subject: [PATCH] get_title: ignore a title --- modules/get_title.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/get_title.pl b/modules/get_title.pl index 124a8f72..dc431d60 100755 --- a/modules/get_title.pl +++ b/modules/get_title.pl @@ -6,6 +6,8 @@ # Quick and dirty by :pragma +# Update: Did I say quick and dirty? I meant lazy and filthy. I should rewrite this completely. + use LWP::UserAgent; use HTML::Entities; use Text::Levenshtein qw(fastdistance); @@ -167,6 +169,7 @@ exit if $t =~ m{^Loading}i; exit if $t =~ m{streamable}i; exit if $t =~ m{freenode}i; exit if $t =~ m{ico scam}i; +exit if $t =~ m{^IBM Knowledge Center$}i; exit if $t =~ m{Freenode head of infrastructure}i; exit if $t =~ m{ISC on Twitter}i; exit if $t =~ m{spambot.*freenode}i;