changed color of ip warning

ae79616c73314c56048480c363ce9de1cc9cbeeb

BPplays <andymalbp@gmail.com>

1 files changed, +2 -2Showing whitespace changes
server.js+2 -2
@@ -288,11 +288,11 @@ if (dnsPreferIPv6) {
288288const ipOptions = [true, 'auto', false];
289289
290290if (!ipOptions.includes(enableIPv6)) {
291291 console.warn(color.red('`protocol: ipv6` option invalid'), "\n use:'", ipOptions, "\n setting to: auto");
292292 enableIPv6 = 'auto';
293293}
294294if (!ipOptions.includes(enableIPv4)) {
295295 console.warn(color.red('`protocol: ipv4` option invalid'), "\n use:'", ipOptions, "\n setting to: auto");
296296 enableIPv4 = 'auto';
297297}
298298