mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-25 02:06:09 +00:00
Fix typo
This commit is contained in:
parent
88dd33d4ce
commit
0435ab5b98
1 changed files with 1 additions and 1 deletions
|
@ -407,7 +407,7 @@ class ConnectionManager(object):
|
||||||
|
|
||||||
connectServers = self._getConnectServers(credentials)
|
connectServers = self._getConnectServers(credentials)
|
||||||
foundServers = self._findServers(self._serverDiscovery())
|
foundServers = self._findServers(self._serverDiscovery())
|
||||||
if not connectServers or not foundServers: # back out right away, no point in continuing
|
if not connectServers and not foundServers: # back out right away, no point in continuing
|
||||||
log.info("Found no servers")
|
log.info("Found no servers")
|
||||||
return []
|
return []
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue