From: Ralf Ertzinger Date: Fri, 18 Apr 2008 20:29:09 +0000 (+0200) Subject: - Study message before throwing it to the grabbers X-Git-Url: https://git.camperquake.de/gitweb.cgi?a=commitdiff_plain;h=0f99e523db38c4fec0abdbdf18f8173d44587a94;hp=48baaa8b607698f8839de3438d40e98085479789;p=videosite.git - Study message before throwing it to the grabbers --- diff --git a/videosite.pl b/videosite.pl index 3ae1e83..f21f6ee 100644 --- a/videosite.pl +++ b/videosite.pl @@ -87,6 +87,8 @@ sub check_for_link { return; } + study($message); + # Offer the message to all Grabbers in turn foreach $g (@grabbers) { ($m, $p) = $g->get($message); @@ -106,6 +108,7 @@ sub check_for_link { # Remove the matched part from the message and try again (there may be # more!) $message =~ s/$p//; + study($message); ($m, $p) = $g->get($message); }