Update podcast latest page to show latest 50 episodes #3343

This commit is contained in:
advplyr 2025-04-08 17:39:24 -05:00
parent c81071a7b3
commit 26c0c89b94

View File

@ -249,7 +249,7 @@ export default {
}, },
async loadRecentEpisodes(page = 0) { async loadRecentEpisodes(page = 0) {
this.processing = true this.processing = true
const episodePayload = await this.$axios.$get(`/api/libraries/${this.libraryId}/recent-episodes?limit=25&page=${page}`).catch((error) => { const episodePayload = await this.$axios.$get(`/api/libraries/${this.libraryId}/recent-episodes?limit=50&page=${page}`).catch((error) => {
console.error('Failed to get recent episodes', error) console.error('Failed to get recent episodes', error)
this.$toast.error(this.$strings.ToastFailedToLoadData) this.$toast.error(this.$strings.ToastFailedToLoadData)
return null return null