mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-17 13:46:14 +00:00
add WebSocket for events and remote control
For some reason playback stop is not being reported
This commit is contained in:
parent
59cdfcd922
commit
9e5385c1c6
5 changed files with 398 additions and 2 deletions
|
@ -55,7 +55,8 @@ class DownloadUtils():
|
|||
host = addon.getSetting('ipaddress')
|
||||
port = addon.getSetting('port')
|
||||
server = host + ":" + port
|
||||
|
||||
return server
|
||||
'''
|
||||
if len(server) < 2:
|
||||
self.logMsg("No server information saved.")
|
||||
return ""
|
||||
|
@ -71,7 +72,7 @@ class DownloadUtils():
|
|||
# If only the host:port is required
|
||||
elif (prefix == False):
|
||||
return server
|
||||
|
||||
'''
|
||||
def getUserId(self, suppress=True):
|
||||
|
||||
WINDOW = xbmcgui.Window( 10000 )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue