Skip to content

Commit

Permalink
fix: use max cpu frequency for static data instead of current
Browse files Browse the repository at this point in the history
  • Loading branch information
MauriceNino committed Jan 19, 2024
1 parent 2c02b6e commit a1da8ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/server/src/data/cpu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default {
ecores: cpuInfo.efficiencyCores,
pcores: cpuInfo.performanceCores,
threads: cpuInfo.cores,
frequency: cpuInfo.speed,
frequency: cpuInfo.speedMax,
};
},
};

0 comments on commit a1da8ad

Please # to comment.