fix zero temp (#467)

This commit is contained in:
Jos Dehaes 2024-05-04 20:59:04 +02:00
parent dd4ada7023
commit ebc86e9702
1 changed files with 1 additions and 1 deletions

View File

@ -448,7 +448,7 @@ namespace Cpu {
const int file_id = atoi(file.path().filename().c_str() + 4); // skip "temp" prefix
string file_path = file.path();
if (!s_contains(file_path, file_suffix)) {
if (!s_contains(file_path, file_suffix) or s_contains(file_path, "nvme")) {
continue;
}