mirror of
https://github.com/jellyfin/jellyfin-roku.git
synced 2024-11-23 06:09:41 +00:00
fix api endpoint for finished state
This commit is contained in:
parent
5e35ffa49f
commit
d23a77e572
@ -8,9 +8,9 @@ end sub
|
||||
sub PlaystateUpdate()
|
||||
if m.top.status = "start"
|
||||
url = "Sessions/Playing"
|
||||
else if m.top.status = "stop"
|
||||
else if m.top.status = "stop" or m.top.status = "finished"
|
||||
url = "Sessions/Playing/Stopped"
|
||||
else if m.top.status = "update" or m.top.status = "finished"
|
||||
else if m.top.status = "update"
|
||||
url = "Sessions/Playing/Progress"
|
||||
else
|
||||
' Unknown State
|
||||
|
Loading…
Reference in New Issue
Block a user