Fix writing of preshared key to config format

Signed-off-by: Roopesh Chander <roop@roopc.net>
This commit is contained in:
Roopesh Chander 2019-02-09 14:57:24 +05:30
parent bac4851e95
commit 91b1734b7a

View File

@ -148,7 +148,7 @@ extension TunnelConfiguration {
if let publicKey = peer.publicKey.base64Key() { if let publicKey = peer.publicKey.base64Key() {
output.append("PublicKey = \(publicKey)\n") output.append("PublicKey = \(publicKey)\n")
} }
if let preSharedKey = peer.preSharedKey?.base64Key { if let preSharedKey = peer.preSharedKey?.base64Key() {
output.append("PresharedKey = \(preSharedKey)\n") output.append("PresharedKey = \(preSharedKey)\n")
} }
if !peer.allowedIPs.isEmpty { if !peer.allowedIPs.isEmpty {