Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Commit

Permalink
🐛 Fix #285
Browse files Browse the repository at this point in the history
  • Loading branch information
GitSquared committed Nov 28, 2018
1 parent e4f5321 commit 5069123
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/classes/cpuinfo.class.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class Cpuinfo {
updateCPUtemp() {
this.si.cpuTemperature((data) => {
try {
document.getElementById("mod_cpuinfo_temp").innerText = `${data.main}°C`;
document.getElementById("mod_cpuinfo_temp").innerText = `${data.max}°C`;
} catch(e) {
// See above notice
}
Expand Down

0 comments on commit 5069123

Please sign in to comment.