mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
main: skip proxy when setting localhost remote node
This commit is contained in:
parent
48393db2c7
commit
c8127f651d
1 changed files with 8 additions and 1 deletions
9
main.qml
9
main.qml
|
@ -1447,9 +1447,16 @@ 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: {
|
||||||
MoneroComponents.Style.blackTheme = persistentSettings.blackTheme
|
MoneroComponents.Style.blackTheme = persistentSettings.blackTheme
|
||||||
|
|
Loading…
Reference in a new issue