Merge pull request #840 from aristocratos/fix/zero_temp

This commit is contained in:
Jakob P. Liljenberg 2024-05-13 19:10:17 +02:00 committed by GitHub
commit ac62ba9de1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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;
}