diff --git a/src/common/utils/system.ts b/src/common/utils/system.ts index 63818422..014115e6 100644 --- a/src/common/utils/system.ts +++ b/src/common/utils/system.ts @@ -6,8 +6,7 @@ let osName: string; try { osName = os.hostname(); } catch (e) { - osName = 'NapCat ' + crypto.randomUUID().substring(0, 4); - + osName = 'NapCat'; // + crypto.randomUUID().substring(0, 4); } export const systemPlatform = os.platform(); export const cpuArch = os.arch();