bdfcac74e6
Co-authored-by: Jimi <jimi@thedodgefamily.com>
17 lines
381 B
Plaintext
17 lines
381 B
Plaintext
import "pkg:/source/utils/config.brs"
|
|
import "pkg:/source/api/sdk.bs"
|
|
|
|
sub init()
|
|
m.top.functionName = "getNextEpisodeTask"
|
|
end sub
|
|
|
|
sub getNextEpisodeTask()
|
|
m.nextEpisodeData = api.shows.GetEpisodes(m.top.showID, {
|
|
UserId: m.global.session.user.id,
|
|
StartItemId: m.top.videoID,
|
|
Limit: 2
|
|
})
|
|
|
|
m.top.nextEpisodeData = m.nextEpisodeData
|
|
end sub
|