From 4363e13c342e4e47e14ce3ca74fbc707dc1f891d Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Mon, 21 Mar 2022 12:51:41 +0100 Subject: Set feed error state when XPath does not match (#4275) Gives the ability to filter HTML+XPath feeds that are not working --- app/Controllers/feedController.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'app/Controllers') diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index dabfb348f..0d1cd3230 100755 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -375,6 +375,9 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController { $simplePie = $simplePiePush; //Used by WebSub } elseif ($feed->kind() === FreshRSS_Feed::KIND_HTML_XPATH) { $simplePie = $feed->loadHtmlXpath(false, $isNewFeed); + if ($simplePie == null) { + throw new FreshRSS_Feed_Exception('HTML+XPath Web scraping failed for [' . $feed->url(false) . ']'); + } } else { $simplePie = $feed->load(false, $isNewFeed); } -- cgit v1.2.3