From 9f98bee3625c7e004533e6ab3c476ed3664c4097 Mon Sep 17 00:00:00 2001 From: BPplays Date: Thu, 9 Jan 2025 19:42:27 -0800 Subject: [PATCH] foramtting --- server.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.js b/server.js index f95226f7d..468b1cb4c 100644 --- a/server.js +++ b/server.js @@ -269,9 +269,9 @@ const enableAccounts = getConfigValue('enableUserAccounts', DEFAULT_ACCOUNTS); const uploadsPath = path.join(dataRoot, UPLOADS_DIRECTORY); -/** @type {boolean|'auto'} */ +/** @type {boolean | "auto"} */ let enableIPv6 = stringToBool(cliArguments.enableIPv6) ?? getConfigValue('protocol.ipv6', DEFAULT_ENABLE_IPV6); -/** @type {boolean|'auto'} */ +/** @type {boolean | "auto"} */ let enableIPv4 = stringToBool(cliArguments.enableIPv4) ?? getConfigValue('protocol.ipv4', DEFAULT_ENABLE_IPV4); /** @type {string} */