mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
commit
5cfd063868
2 changed files with 1 additions and 13 deletions
|
@ -174,8 +174,6 @@ class ConnectionManager(object):
|
|||
if CONNECTION_MODE['Local'] not in tests:
|
||||
tests.append(CONNECTION_MODE['Local'])
|
||||
|
||||
# TODO: begin to wake server
|
||||
|
||||
LOG.info("beginning connection tests")
|
||||
return self._test_next_connection_mode(tests, 0, server, options)
|
||||
|
||||
|
@ -322,12 +320,7 @@ class ConnectionManager(object):
|
|||
|
||||
except Exception:
|
||||
LOG.exception("test failed for connection mode %s with server %s", mode, server.get('Name'))
|
||||
|
||||
if enable_retry:
|
||||
# TODO: wake on lan and retry
|
||||
return self._test_next_connection_mode(tests, index + 1, server, options)
|
||||
else:
|
||||
return self._test_next_connection_mode(tests, index + 1, server, options)
|
||||
return self._test_next_connection_mode(tests, index + 1, server, options)
|
||||
else:
|
||||
if self._compare_versions(self._get_min_server_version(), result['Version']) == 1:
|
||||
LOG.warning("minServerVersion requirement not met. Server version: %s", result['Version'])
|
||||
|
@ -575,8 +568,6 @@ class ConnectionManager(object):
|
|||
|
||||
if system_info.get('LocalAddress'):
|
||||
server['LocalAddress'] = system_info['LocalAddress']
|
||||
if 'MacAddress' in system_info:
|
||||
server['WakeOnLanInfos'] = [{'MacAddress': system_info['MacAddress']}]
|
||||
|
||||
def _on_authenticated(self, result, options={}):
|
||||
|
||||
|
|
|
@ -107,9 +107,6 @@ class Credentials(object):
|
|||
if server.get('Name'):
|
||||
existing['Name'] = server['Name']
|
||||
|
||||
if server.get('WakeOnLanInfos'):
|
||||
existing['WakeOnLanInfos'] = server['WakeOnLanInfos']
|
||||
|
||||
if server.get('LastConnectionMode') is not None:
|
||||
existing['LastConnectionMode'] = server['LastConnectionMode']
|
||||
|
||||
|
|
Loading…
Reference in a new issue