refactor: Random os hostname

This commit is contained in:
linyuchen 2024-05-12 20:32:36 +08:00
parent a08ec2a4bd
commit 94273d80b0

View File

@ -4,9 +4,9 @@ import path from 'node:path';
// 缓解Win7设备兼容性问题 // 缓解Win7设备兼容性问题
let osName: string; let osName: string;
try { try {
osName = os.hostname(); osName = os.hostname();
} catch (e) { } catch (e) {
osName = "NapCat" osName = 'NapCat ' + crypto.randomUUID().substring(0, 4);
} }
export const systemPlatform = os.platform(); export const systemPlatform = os.platform();