fix(FeedMerge): allow xml parse failure too (#3518)

This commit is contained in:
Dag 2023-07-08 23:36:36 +02:00 committed by GitHub
parent 7881c87bed
commit f0a504bb9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,12 +63,20 @@ TEXT;
try { try {
$this->collectExpandableDatas($feed); $this->collectExpandableDatas($feed);
} catch (HttpException $e) { } catch (HttpException $e) {
Logger::warning(sprintf('Exception in FeedMergeBridge: %s', create_sane_exception_message($e)));
$this->items[] = [ $this->items[] = [
'title' => 'RSS-Bridge: ' . $e->getMessage(), 'title' => 'RSS-Bridge: ' . $e->getMessage(),
// Give current time so it sorts to the top // Give current time so it sorts to the top
'timestamp' => time(), 'timestamp' => time(),
]; ];
continue; continue;
} catch (\Exception $e) {
if (str_starts_with($e->getMessage(), 'Unable to parse xml')) {
// Allow this particular exception from FeedExpander
Logger::warning(sprintf('Exception in FeedMergeBridge: %s', create_sane_exception_message($e)));
continue;
}
throw $e;
} }
} else { } else {
$this->collectExpandableDatas($feed); $this->collectExpandableDatas($feed);