mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-08 02:15:08 +00:00
Fix add/remove server
This commit is contained in:
parent
df306e69d7
commit
57758f3f99
3 changed files with 4 additions and 3 deletions
|
@ -161,7 +161,7 @@ def listing():
|
|||
context = []
|
||||
|
||||
if server.get('ManualAddress'):
|
||||
context.append((_(33141), "RunPlugin(plugin://plugin.video.emby/?mode=removeserver&server=%s)"))
|
||||
context.append((_(33141), "RunPlugin(plugin://plugin.video.emby/?mode=removeserver&server=%s)" % server['Id']))
|
||||
|
||||
if 'AccessToken' not in server:
|
||||
directory("%s (%s)" % (server['Name'], _(30539)), "plugin://plugin.video.emby/?mode=login&server=%s" % server['Id'], False, context=context)
|
||||
|
|
|
@ -170,7 +170,8 @@ class Service(xbmc.Monitor):
|
|||
if method not in ('ServerUnreachable', 'ServerShuttingDown', 'UserDataChanged', 'ServerConnect',
|
||||
'LibraryChanged', 'ServerOnline', 'SyncLibrary', 'RepairLibrary', 'RemoveLibrary',
|
||||
'EmbyConnect', 'SyncLibrarySelection', 'RepairLibrarySelection', 'AddServer',
|
||||
'Unauthorized', 'UpdateServer', 'UserConfigurationUpdated', 'ServerRestarting'):
|
||||
'Unauthorized', 'UpdateServer', 'UserConfigurationUpdated', 'ServerRestarting',
|
||||
'RemoveServer'):
|
||||
return
|
||||
|
||||
data = json.loads(data)[0]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue