diff --git a/vendor/PicoFeed/Client.php b/vendor/PicoFeed/Client.php index c5e75a7..27a5b7a 100644 --- a/vendor/PicoFeed/Client.php +++ b/vendor/PicoFeed/Client.php @@ -79,8 +79,8 @@ abstract class Client } else if (strpos($line, ':') !== false) { - list($name, $value) = explode(': ', $line); - $headers[trim($name)] = trim($value); + @list($name, $value) = explode(': ', $line); + if ($value) $headers[trim($name)] = trim($value); } }