mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-14 09:18:22 +02:00
Update podcast rss feed parser to use psc chapters on episodes
This commit is contained in:
@ -325,6 +325,24 @@ class FeedEpisode extends Model {
|
||||
customElements.push({ 'itunes:summary': { _cdata: this.description } })
|
||||
}
|
||||
|
||||
customElements.push({
|
||||
'psc:chapters': [
|
||||
{
|
||||
_attr: {
|
||||
version: '1.2'
|
||||
},
|
||||
'psc:chapter': [
|
||||
{
|
||||
_attr: {
|
||||
title: 'Test',
|
||||
start: '00:00:00'
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
})
|
||||
|
||||
return {
|
||||
title: this.title,
|
||||
description: this.description || '',
|
||||
|
Reference in New Issue
Block a user