diff --git a/pages/system/src/about.rs b/pages/system/src/about.rs index fa5116f..44f81f7 100644 --- a/pages/system/src/about.rs +++ b/pages/system/src/about.rs @@ -183,6 +183,7 @@ pub fn processor_name(bump: &Bump, name: &mut String) { if let Some(info) = line.strip_prefix("model name") { if let Some(info) = info.trim_start().strip_prefix(':') { name.push_str(info.trim()); + return; } break;