From 8aafe6b8c931b7804f61ca9b086db06eba32b5ef Mon Sep 17 00:00:00 2001 From: Minghong Xu Date: Tue, 30 Jan 2024 06:59:19 +0000 Subject: [PATCH] WireGuard.js: remove redundant newline char in client config generation --- src/lib/WireGuard.js | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/lib/WireGuard.js b/src/lib/WireGuard.js index 1d432a30..8ef321cd 100644 --- a/src/lib/WireGuard.js +++ b/src/lib/WireGuard.js @@ -196,19 +196,22 @@ AllowedIPs = ${client.address}/32`; const config = await this.getConfig(); const client = await this.getClient({ clientId }); - return ` -[Interface] + const interface = `[Interface] PrivateKey = ${client.privateKey} Address = ${client.address}/24 -${WG_DEFAULT_DNS ? `DNS = ${WG_DEFAULT_DNS}` : ''} -${WG_MTU ? `MTU = ${WG_MTU}` : ''} +${WG_DEFAULT_DNS ? `DNS = ${WG_DEFAULT_DNS}\n` : ''}\ +${WG_MTU ? `MTU = ${WG_MTU}\n` : ''}\ +`; -[Peer] + const peer = `[Peer] PublicKey = ${config.server.publicKey} PresharedKey = ${client.preSharedKey} AllowedIPs = ${WG_ALLOWED_IPS} PersistentKeepalive = ${WG_PERSISTENT_KEEPALIVE} -Endpoint = ${WG_HOST}:${WG_PORT}`; +Endpoint = ${WG_HOST}:${WG_PORT} +`; + + return [interface, peer].join('\n'); } async getClientQRCodeSVG({ clientId }) {