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.`
|