fix: if the rss podcast server does not respond, do not crash when exporting
All checks were successful
repod / xml (push) Successful in 32s
repod / php (push) Successful in 53s
repod / nodejs (push) Successful in 2m4s
repod / release (push) Has been skipped

This commit is contained in:
Michel Roux 2024-01-30 14:38:26 +01:00
parent 9fa69dfbb8
commit 1c261fbe4b

View File

@ -51,7 +51,11 @@ class OpmlController extends Controller
$subscriptions = $this->podcastMetricsReader->metrics($this->userService->getUserUID()); $subscriptions = $this->podcastMetricsReader->metrics($this->userService->getUserUID());
foreach ($subscriptions as $subscription) { foreach ($subscriptions as $subscription) {
$podcast = $this->podcastDataReader->getCachedOrFetchPodcastData($subscription->getUrl(), $this->userService->getUserUID()); try {
$podcast = $this->podcastDataReader->getCachedOrFetchPodcastData($subscription->getUrl(), $this->userService->getUserUID());
} catch (\Exception $e) {
continue;
}
if ($podcast) { if ($podcast) {
$outline = $body->addChild('outline'); $outline = $body->addChild('outline');