mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-02-09 19:59:40 +00:00
Add support for searching podcast episode titles #3301
This commit is contained in:
parent
25c7e95a64
commit
0ed6045d1e
5 changed files with 123 additions and 1 deletions
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue