a33ce8bd57
* Add TV Episode Shuffle * Reuse playback info * Get Subtitle Popup working * Get Subtitle Popup working * Get Resume/Restart popup working * Playlist poster, bug fixes * Remove commented out code * Start from beginning if playing queue * Fix Playback Info issue * Remove optional chaining to fix formatter * Fix playlist content list. Code cleanup. * Remove commented out code
16 lines
283 B
Plaintext
16 lines
283 B
Plaintext
sub setFields()
|
|
datum = m.top.json
|
|
|
|
m.top.id = datum.id
|
|
m.top.title = datum.name
|
|
m.top.overview = datum.overview
|
|
end sub
|
|
|
|
sub setPoster()
|
|
if m.top.image <> invalid
|
|
m.top.posterURL = m.top.image.url
|
|
else
|
|
m.top.posterURL = ""
|
|
end if
|
|
end sub
|