mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-30 15:55:26 +02:00
Add dropdown to the episode type
This commit is contained in:
parent
b1ee54522a
commit
9a51c3be0f
3 changed files with 9 additions and 6 deletions
|
@ -117,7 +117,7 @@ class PodcastEpisode {
|
|||
this.enclosure = data.enclosure ? { ...data.enclosure } : null
|
||||
this.season = data.season || ''
|
||||
this.episode = data.episode || ''
|
||||
this.episodeType = data.episodeType || ''
|
||||
this.episodeType = data.episodeType || 'full'
|
||||
this.publishedAt = data.publishedAt || 0
|
||||
this.addedAt = Date.now()
|
||||
this.updatedAt = Date.now()
|
||||
|
@ -165,4 +165,4 @@ class PodcastEpisode {
|
|||
return cleanStringForSearch(this.title).includes(query)
|
||||
}
|
||||
}
|
||||
module.exports = PodcastEpisode
|
||||
module.exports = PodcastEpisode
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue