mirror of https://github.com/Nofated095/Q2TG.git
fix: 运行 Nix Docker 时 uname 错误
This commit is contained in:
parent
3b1943961a
commit
004095fbcf
|
@ -15,6 +15,7 @@ import fs from 'fs';
|
||||||
import fsP from 'fs/promises';
|
import fsP from 'fs/promises';
|
||||||
import { Config } from 'oicq/lib/client';
|
import { Config } from 'oicq/lib/client';
|
||||||
import dataPath from '../helpers/dataPath';
|
import dataPath from '../helpers/dataPath';
|
||||||
|
import os from 'os';
|
||||||
|
|
||||||
const LOG_LEVEL: LogLevel = 'warn';
|
const LOG_LEVEL: LogLevel = 'warn';
|
||||||
|
|
||||||
|
@ -101,7 +102,7 @@ export default class OicqClient extends Client {
|
||||||
`MiWifi-${random.hex(4).toUpperCase()}`, `TP-LINK-${random.hex(6).toUpperCase()}`),
|
`MiWifi-${random.hex(4).toUpperCase()}`, `TP-LINK-${random.hex(6).toUpperCase()}`),
|
||||||
bootloader: random.pick('U-Boot', 'GRUB', 'gummiboot'),
|
bootloader: random.pick('U-Boot', 'GRUB', 'gummiboot'),
|
||||||
android_id: random.hex(16),
|
android_id: random.hex(16),
|
||||||
proc_version: `${execSync('uname -s').toString().replace('\n', '')} version ${execSync('uname -r').toString().replace('\n', '')}`,
|
proc_version: `${os.type()} version ${os.release()}`,
|
||||||
mac_address: `8c:85:90:${random.hex(2)}:${random.hex(2)}:${random.hex(2)}`.toUpperCase(),
|
mac_address: `8c:85:90:${random.hex(2)}:${random.hex(2)}:${random.hex(2)}`.toUpperCase(),
|
||||||
ip_address: `192.168.${random.int(1, 200)}.${random.int(10, 250)}`,
|
ip_address: `192.168.${random.int(1, 200)}.${random.int(10, 250)}`,
|
||||||
incremental: random.int(0, 4294967295),
|
incremental: random.int(0, 4294967295),
|
||||||
|
|
Loading…
Reference in New Issue