4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 13:16:37 +00:00

Fix route names in podcast RSS.

This commit is contained in:
Buster Neece 2024-01-27 03:33:57 -06:00
parent b347f74702
commit 8e6c601087
No known key found for this signature in database

View File

@ -244,7 +244,7 @@ final class PodcastFeedAction implements SingleActionInterface
}
$podcastArtworkSrc = $this->router->fromHere(
routeName: 'api:stations:podcast:art',
routeName: 'api:stations:public:podcast:art',
routeParams: $routeParams,
absolute: true
);
@ -328,7 +328,7 @@ final class PodcastFeedAction implements SingleActionInterface
$rssEnclosure = new RssEnclosure();
$podcastMediaPlayUrl = $this->router->fromHere(
routeName: 'api:stations:podcast:episode:download',
routeName: 'api:stations:public:podcast:episode:download',
routeParams: ['episode_id' => $episode->getId()],
absolute: true
);