summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-10 11:13:51 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-10 11:13:51 +0200
commit7cbaebdd2bee38d814e3e9693e66a97ea051aa8c (patch)
tree19f9a3a08e90883d478037b810727d5b363688a5
parent:bug: convert bigint literal to object (diff)
downloadserver-7cbaebdd2bee38d814e3e9693e66a97ea051aa8c.tar.xz
:bug: fix windows process.getuid
-rw-r--r--bundle/src/stats.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle/src/stats.ts b/bundle/src/stats.ts

index 49705424..18bb85ca 100644 --- a/bundle/src/stats.ts +++ b/bundle/src/stats.ts
@@ -7,7 +7,7 @@ export function initStats() { console.log(`[CPU] ${osu.cpu.model()} Cores x${osu.cpu.count()}`); console.log(`[System] ${os.platform()} ${os.arch()}`); console.log(`[Process] running with pid: ${process.pid}`); - if (process.getuid() === 0) { + if (process.getuid && process.getuid() === 0) { console.warn( red( `[Process] Warning fosscord is running as root, this highly discouraged and might expose your system vulnerable to attackers. Please run fosscord as a user without root privileges.`