Fix multi-server support

This commit is contained in:
angelblue05 2019-01-25 07:02:27 -06:00
parent caa758c3ec
commit 98ffa9b503
2 changed files with 12 additions and 4 deletions

View file

@ -148,7 +148,7 @@ class Player(xbmc.Player):
'CurrentPosition': item.get('CurrentPosition') or int(seektime),
'Muted': muted,
'Volume': volume,
'Server': Emby(item['ServerId']),
'Server': Emby(item['ServerId']).get_client(),
'Paused': False
})