Skip to content

Commit

Permalink
Fix podcast episode AudioTrack object
Browse files Browse the repository at this point in the history
  • Loading branch information
advplyr committed Jan 6, 2025
1 parent a1ec10b commit 977bdbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/models/PodcastEpisode.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ class PodcastEpisode extends Model {
getAudioTrack(libraryItemId) {
const track = structuredClone(this.audioFile)
track.startOffset = 0
track.title = this.audioFile.metadata.title
track.title = this.audioFile.metadata.filename
track.contentUrl = `${global.RouterBasePath}/api/items/${libraryItemId}/file/${track.ino}`
return track
}
Expand Down

0 comments on commit 977bdbf

Please sign in to comment.