mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-11 10:46:43 +02:00
fix(rss): add file extension to enclosure url
This commit is contained in:
parent
948a3db48a
commit
964cbba54f
3 changed files with 9 additions and 6 deletions
|
|
@ -72,6 +72,9 @@ class EpisodeAnalyticsController extends Controller
|
|||
throw PageNotFoundException::forPageNotFound();
|
||||
}
|
||||
|
||||
return redirect()->route('episode-audio', [$episode->podcast->handle, $episode->slug]);
|
||||
return redirect()->route(
|
||||
'episode-audio',
|
||||
[$episode->podcast->handle, $episode->slug, $episode->audio->file_extension]
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue