From 82ee4c22b8884a6128fcc743f4a9f3b170f9c4c0 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Mon, 11 Dec 2023 16:47:56 +0100 Subject: [PATCH] qml: fix old ref to network.tor_proxy --- electrum/gui/qml/qeserverlistmodel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qml/qeserverlistmodel.py b/electrum/gui/qml/qeserverlistmodel.py index 4863a3789..e7817582a 100644 --- a/electrum/gui/qml/qeserverlistmodel.py +++ b/electrum/gui/qml/qeserverlistmodel.py @@ -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: