Update server-stats.ts (#3512)

This commit is contained in:
Acid Chicken (硫酸鶏) 2018-12-08 10:40:45 +09:00 committed by syuilo
parent f9792f0d5c
commit 48deb35d4b

View file

@ -23,7 +23,7 @@ export default function() {
const cpu = await cpuUsage();
const usedmem = await usedMem();
const totalmem = await totalMem();
const disk = diskusage.checkSync(os.platform() == 'win32' ? 'c:' : '/');
const disk = await diskusage.check(os.platform() == 'win32' ? 'c:' : '/');
const stats = {
cpu_usage: cpu,