- Add video quality parameter for GoogleVideo
[videosite.git] / videosite.pl
index 3ae1e83..f21f6ee 100644 (file)
@@ -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);
         }