From 5d6e106ef3690e365592a2e72186d90b783850a4 Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Mon, 10 Dec 2018 15:15:25 -0600 Subject: [PATCH] Fix emby connect auth string Was preventing proper device detection when using emby connect, play to, etc. --- resources/lib/emby/core/connection_manager.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/lib/emby/core/connection_manager.py b/resources/lib/emby/core/connection_manager.py index 18e02e0b..96e3207f 100644 --- a/resources/lib/emby/core/connection_manager.py +++ b/resources/lib/emby/core/connection_manager.py @@ -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({