tweeper.php: check the return value of Tweeper::tweep()
authorAntonio Ospite <ao2@ao2.it>
Sun, 30 Oct 2016 09:28:41 +0000 (10:28 +0100)
committerAntonio Ospite <ao2@ao2.it>
Sun, 30 Oct 2016 09:28:41 +0000 (10:28 +0100)
If the tweep() method fails return 1 to the calling process so that it
can know that something failed.

tweeper.php

index b1809ed..0955a11 100644 (file)
@@ -442,4 +442,8 @@ if (!isset($options['src_url'])) {
 }
 
 $tweeper = new Tweeper($options['generate_enclosure']);
 }
 
 $tweeper = new Tweeper($options['generate_enclosure']);
-echo $tweeper->tweep($options['src_url']);
+$output = $tweeper->tweep($options['src_url']);
+if (is_null($output)) {
+  exit(1);
+}
+echo $output;