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

Commit 5069123

Browse files
committed
🐛 Fix #285
1 parent e4f5321 commit 5069123

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/classes/cpuinfo.class.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ class Cpuinfo {
148148
updateCPUtemp() {
149149
this.si.cpuTemperature((data) => {
150150
try {
151-
document.getElementById("mod_cpuinfo_temp").innerText = `${data.main}°C`;
151+
document.getElementById("mod_cpuinfo_temp").innerText = `${data.max}°C`;
152152
} catch(e) {
153153
// See above notice
154154
}

0 commit comments

Comments
 (0)