X-Git-Url: https://git.ao2.it/tweeper.git/blobdiff_plain/3db7ab4d8e5244f1c5c00ac966b2d615511f235b..9c481b9a71983e1359c91748a7e5150700808599:/tweeper.php diff --git a/tweeper.php b/tweeper.php index fc3a3ef..0955a11 100644 --- a/tweeper.php +++ b/tweeper.php @@ -89,6 +89,9 @@ class Tweeper { CURLOPT_USERAGENT => Tweeper::$userAgent, )); $contents = curl_exec($ch); + if (FALSE === $contents) { + trigger_error(curl_error($ch)); + } curl_close($ch); return $contents; @@ -111,6 +114,9 @@ class Tweeper { )); curl_exec($ch); $url_info = curl_getinfo($ch); + if (FALSE === $url_info) { + trigger_error(curl_error($ch)); + } curl_close($ch); return $url_info; @@ -436,4 +442,8 @@ if (!isset($options['src_url'])) { } $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;