From 7f0efd72cebb2b1fe96dd644f27affc458238d63 Mon Sep 17 00:00:00 2001 From: W3AXL <29879554+W3AXL@users.noreply.github.com> Date: Wed, 18 Dec 2024 19:08:15 -0500 Subject: [PATCH] oops, fixed peer list saving --- src/common/lookups/PeerListLookup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/lookups/PeerListLookup.cpp b/src/common/lookups/PeerListLookup.cpp index 4112de37..f64d131c 100644 --- a/src/common/lookups/PeerListLookup.cpp +++ b/src/common/lookups/PeerListLookup.cpp @@ -272,8 +272,8 @@ bool PeerListLookup::save() // Add the password if we have one if (password.length() > 0) { line += password; - line += ","; } + line += ","; // Add peerLink flag bool peerLink = entry.second.peerLink(); if (peerLink) {