aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wizard/WizardDaemonSettings.qml6
1 files changed, 5 insertions, 1 deletions
diff --git a/wizard/WizardDaemonSettings.qml b/wizard/WizardDaemonSettings.qml
index 9ab9fefc..1a5ebd72 100644
--- a/wizard/WizardDaemonSettings.qml
+++ b/wizard/WizardDaemonSettings.qml
@@ -43,7 +43,11 @@ ColumnLayout {
function save(){
persistentSettings.useRemoteNode = remoteNode.checked
persistentSettings.remoteNodeAddress = remoteNodeEdit.getAddress();
- persistentSettings.bootstrapNodeAddress = bootstrapNodeEdit.daemonAddrText ? bootstrapNodeEdit.getAddress() : "";
+ if (bootstrapNodeEdit.daemonAddrText == "auto") {
+ persistentSettings.bootstrapNodeAddress = "auto";
+ } else {
+ persistentSettings.bootstrapNodeAddress = bootstrapNodeEdit.getAddress();
+ }
}
MoneroComponents.RadioButton {