forked from FoundKeyGang/FoundKey
Fix bug
This commit is contained in:
parent
d4d3316d18
commit
32117a573b
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ export default function() {
|
|||
async function cpuUsage() {
|
||||
try {
|
||||
const data = await sysUtils.currentLoad();
|
||||
return Math.floor(data.currentload);
|
||||
return Math.floor(data.currentload / 100);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
throw error;
|
||||
|
|
Loading…
Reference in a new issue