forked from Mirrors/Dispatcharr
Bug fix: Use UUID instead of ID for episode URL. This fixes links not working in the series modal.
This commit is contained in:
parent
b791190e3b
commit
bd3709463a
1 changed files with 1 additions and 1 deletions
|
|
@ -364,7 +364,7 @@ const useVODStore = create((set, get) => ({
|
|||
name: seriesInfo.name,
|
||||
},
|
||||
type: 'episode',
|
||||
uuid: episode.id, // Use the stream ID as UUID for playback
|
||||
uuid: episode.uuid,
|
||||
logo: episode.movie_image ? { url: episode.movie_image } : null,
|
||||
air_date: episode.air_date || null,
|
||||
movie_image: episode.movie_image || null,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue