Add support for searching podcast episode titles #3301

This commit is contained in:
advplyr 2025-05-15 17:16:15 -05:00
parent 25c7e95a64
commit 0ed6045d1e
5 changed files with 123 additions and 1 deletions

View file

@ -217,6 +217,16 @@ export default {
})
}
if (this.results.episodes?.length) {
shelves.push({
id: 'episodes',
label: 'Episodes',
labelStringKey: 'LabelEpisodes',
type: 'episode',
entities: this.results.episodes.map((res) => res.libraryItem)
})
}
if (this.results.series?.length) {
shelves.push({
id: 'series',