Fix for unsorted feeds

Fix for Podcasts such as Beers with Talos who don't publish their feed in a chronological order
This commit is contained in:
jflattery 2022-05-12 20:26:21 +00:00
parent a1331fb3f8
commit 6bb36381f1

View File

@ -148,6 +148,7 @@ export default {
})
},
init() {
this.episodes.sort((a, b) => (a.publishedAt < b.publishedAt) ? 1 : -1)
for (let i = 0; i < this.episodes.length; i++) {
var episode = this.episodes[i]
if (episode.enclosure && !this.itemEpisodeMap[episode.enclosure.url]) {