mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-03 09:29:38 +00:00
Merge pull request #4085
c8127f6
main: skip proxy when setting localhost remote node (selsta)
This commit is contained in:
commit
55a0bc46e4
1 changed files with 8 additions and 1 deletions
9
main.qml
9
main.qml
|
@ -1447,8 +1447,15 @@ ApplicationWindow {
|
||||||
function getWalletProxyAddress() {
|
function getWalletProxyAddress() {
|
||||||
if (!useRemoteNode) {
|
if (!useRemoteNode) {
|
||||||
return "";
|
return "";
|
||||||
|
} else {
|
||||||
|
const remoteAddress = remoteNodesModel.currentRemoteNode().address;
|
||||||
|
// skip proxy when using localhost remote node
|
||||||
|
if (remoteAddress.startsWith("127.0.0.1:") || remoteAddress.startsWith("localhost:")) {
|
||||||
|
return "";
|
||||||
|
} else {
|
||||||
|
return getProxyAddress();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return getProxyAddress();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
|
|
Loading…
Reference in a new issue