Ensure userid is set for token

This commit is contained in:
angelblue05 2019-02-01 03:09:21 -06:00
parent 4ebcb05ed5
commit e966b613b0
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ class HTTP(object):
data['headers'].update({'Authorization': auth})
if self.config['auth.token']:
if self.config['auth.token'] and self.config['auth.user_id']:
auth += ', UserId=%s' % self.config['auth.user_id'].encode('utf-8')
data['headers'].update({'Authorization': auth, 'X-MediaBrowser-Token': self.config['auth.token'].encode('utf-8')})