Browse Source

qml: fix old ref to network.tor_proxy

master
Sander van Grieken 2 years ago
parent
commit
82ee4c22b8
No known key found for this signature in database
GPG Key ID: 9BCF8209EA402EBA
  1. 2
      electrum/gui/qml/qeserverlistmodel.py

2
electrum/gui/qml/qeserverlistmodel.py

@ -117,7 +117,7 @@ class QEServerListModel(QAbstractListModel, QtEventListener):
for _host, d in sorted(all_servers.items()): for _host, d in sorted(all_servers.items()):
if _host in connected_hosts: if _host in connected_hosts:
continue continue
if _host.endswith('.onion') and not self.network.tor_proxy: if _host.endswith('.onion') and not self.network.is_proxy_tor:
continue continue
port = d.get(protocol) port = d.get(protocol)
if port: if port:

Loading…
Cancel
Save