mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix post capabilities
This commit is contained in:
parent
274bd1f607
commit
9a84d7f1ce
1 changed files with 4 additions and 3 deletions
|
@ -74,11 +74,12 @@ class UserClient(threading.Thread):
|
|||
|
||||
@classmethod
|
||||
def get_ssl(cls):
|
||||
"""
|
||||
|
||||
'''
|
||||
Returns boolean value or path to certificate
|
||||
True: Verify ssl
|
||||
False: Don't verify connection
|
||||
"""
|
||||
'''
|
||||
return settings('sslverify') == "true"
|
||||
|
||||
def get_access(self):
|
||||
|
@ -219,7 +220,7 @@ class UserClient(threading.Thread):
|
|||
|
||||
def post_capabilities(self):
|
||||
log.info("post capabilities")
|
||||
self.doutils.post_capabilities()
|
||||
return self.doutils.post_capabilities()
|
||||
|
||||
def load_connect_servers(self):
|
||||
# Set connect servers
|
||||
|
|
Loading…
Reference in a new issue