mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix emby connect auth string
Was preventing proper device detection when using emby connect, play to, etc.
This commit is contained in:
parent
fa8a2d7152
commit
5d6e106ef3
1 changed files with 4 additions and 4 deletions
|
@ -724,10 +724,10 @@ class ConnectionManager(object):
|
|||
raise KeyError("credentials['ConnectUserId'] cannot be null")
|
||||
|
||||
auth = "MediaBrowser "
|
||||
auth += "Client='%s', " % self.config['app.name']
|
||||
auth += "Device='%s', " % self.config['app.device_name']
|
||||
auth += "DeviceId='%s', " % self.config['app.device_id']
|
||||
auth += "Version='%s' " % self.config['app.version']
|
||||
auth += "Client=%s, " % self.config['app.name']
|
||||
auth += "Device=%s, " % self.config['app.device_name']
|
||||
auth += "DeviceId=%s, " % self.config['app.device_id']
|
||||
auth += "Version=%s " % self.config['app.version']
|
||||
|
||||
try:
|
||||
auth = self._request_url({
|
||||
|
|
Loading…
Reference in a new issue