fix(vice): news rss changed (#3694)

* fix: typo in prior commit

* fix(vice): news rss changed
This commit is contained in:
Dag 2023-09-23 20:39:02 +02:00 committed by GitHub
parent bab02bf190
commit 0c69148cff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 3 deletions

View file

@ -390,7 +390,7 @@ abstract class XPathAbstract extends BridgeAbstract
* Should provide the feed's items.
*
* @param \DOMXPath $xpath
* @return \DOMNodeList
* @return \DOMNodeList|false
*/
protected function provideFeedItems(\DOMXPath $xpath)
{
@ -417,6 +417,7 @@ abstract class XPathAbstract extends BridgeAbstract
$entries = $this->provideFeedItems($xpath);
if ($entries === false) {
// malformed
return;
}