Fix writing of preshared key to config format
Signed-off-by: Roopesh Chander <roop@roopc.net>
This commit is contained in:
@@ -148,7 +148,7 @@ extension TunnelConfiguration {
|
||||
if let publicKey = peer.publicKey.base64Key() {
|
||||
output.append("PublicKey = \(publicKey)\n")
|
||||
}
|
||||
if let preSharedKey = peer.preSharedKey?.base64Key {
|
||||
if let preSharedKey = peer.preSharedKey?.base64Key() {
|
||||
output.append("PresharedKey = \(preSharedKey)\n")
|
||||
}
|
||||
if !peer.allowedIPs.isEmpty {
|
||||
|
||||
Reference in New Issue
Block a user