mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix typo: SetSubtitles websocket
This commit is contained in:
parent
11e5de378b
commit
24042d2906
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ class WebSocketClient(threading.Thread):
|
|||
else:
|
||||
# Emby merges audio and subtitle index together
|
||||
audio_tracks = len(player.getAvailableAudioStreams())
|
||||
player.setSubtitleStream(index - audio_tracks - 1)
|
||||
player.setSubtitleStream(emby_index - audio_tracks - 1)
|
||||
|
||||
# Let service know
|
||||
window('emby_command', value="true")
|
||||
|
|
Loading…
Reference in a new issue