mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-03 16:19:45 +00:00
fix: give better error message when feed can't be parsed
This commit is contained in:
parent
c0e2a430ab
commit
52ccf649cd
@ -95,6 +95,10 @@ abstract class FeedExpander extends BridgeAbstract {
|
||||
or returnServerError('Could not request ' . $url);
|
||||
$rssContent = simplexml_load_string(trim($content));
|
||||
|
||||
if ($rssContent === false) {
|
||||
throw new \Exception('Unable to parse string as xml');
|
||||
}
|
||||
|
||||
Debug::log('Detecting feed format/version');
|
||||
switch(true) {
|
||||
case isset($rssContent->item[0]):
|
||||
|
Loading…
Reference in New Issue
Block a user