refactor: Random os hostname

This commit is contained in:
linyuchen 2024-05-12 20:32:36 +08:00
parent 193fc12c5d
commit 10e96f63b4

View File

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