add missing peer link parameter when saving peer list;

pull/73/head
Bryan Biedenkapp 1 year ago
parent 2e2e8bf957
commit 8c00c7b81c

@ -266,6 +266,12 @@ bool PeerListLookup::save()
line += password;
line += ",";
}
bool peerLink = entry.second.peerLink();
if (peerLink) {
line += "1,";
} else {
line += "0,";
}
// Add the newline
line += "\n";
// Write to file

Loading…
Cancel
Save

Powered by TurnKey Linux.