]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix setting id.
authorZach Copley <zach@controlyourself.ca>
Sat, 18 Jul 2009 01:09:03 +0000 (18:09 -0700)
committerZach Copley <zach@controlyourself.ca>
Sat, 18 Jul 2009 01:09:03 +0000 (18:09 -0700)
scripts/twitterstatusfetcher.php

index 8b10bfbadda5c5396f82c38c923da5a0526288ec..248cf86f1098107c6594750ffd9c3cffc6d1da1b 100755 (executable)
@@ -32,7 +32,7 @@ $helptext = <<<END_OF_TRIM_HELP
 Batch script for retrieving Twitter messages from foreign service.
 
   -i --id      Identity (default 'generic')
-    
+
 END_OF_TRIM_HELP;
 
 require_once INSTALLDIR.'/scripts/commandline.inc';
@@ -61,6 +61,15 @@ class TwitterStatusFetcher extends Daemon
 {
     private $_children = array();
 
+    function __construct($id=null, $daemonize=true)
+    {
+        parent::__construct($daemonize);
+
+        if ($id) {
+            $this->set_id($id);
+        }
+    }
+
     /**
      * Name of this daemon
      *
@@ -640,6 +649,8 @@ if (have_option('i')) {
     $id = null;
 }
 
+common_debug("id set to $id");
+
 $fetcher = new TwitterStatusFetcher($id);
 $fetcher->runOnce();