mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-25 18:26:15 +00:00
Adjust the server verification
If server is already set up, don't force user identification.
This commit is contained in:
parent
fdc62aa623
commit
1f7e045f6a
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ class InitialSetup(object):
|
||||||
current_state = self.connectmanager.get_state()
|
current_state = self.connectmanager.get_state()
|
||||||
if current_state['State'] == STATE['ConnectSignIn']:
|
if current_state['State'] == STATE['ConnectSignIn']:
|
||||||
# Failed to identify server
|
# Failed to identify server
|
||||||
return False
|
return True
|
||||||
|
|
||||||
for server in current_state['Servers']:
|
for server in current_state['Servers']:
|
||||||
if server['Id'] == settings('serverId'):
|
if server['Id'] == settings('serverId'):
|
||||||
|
|
Loading…
Reference in a new issue