mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 15:31:31 +00:00
Only start if not already in pending_servers
This was only in one call site previously, not both.
This commit is contained in:
parent
31ffd4b381
commit
2f34f3db21
1 changed files with 1 additions and 1 deletions
|
@ -368,7 +368,7 @@ class Network(util.DaemonThread):
|
||||||
self.send_subscriptions()
|
self.send_subscriptions()
|
||||||
self.set_status('connected')
|
self.set_status('connected')
|
||||||
self.notify('updated')
|
self.notify('updated')
|
||||||
else:
|
elif server not in self.pending_servers:
|
||||||
self.print_error("starting %s; will switch once connected" % server)
|
self.print_error("starting %s; will switch once connected" % server)
|
||||||
self.start_interface(server)
|
self.start_interface(server)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue