1
0

qml: fix old ref to network.tor_proxy

This commit is contained in:
Sander van Grieken
2023-12-11 16:47:56 +01:00
parent ee10b0bf3e
commit 82ee4c22b8

View File

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