diff --git a/common/src/identifier.rs b/common/src/identifier.rs index 884810d..329acd3 100644 --- a/common/src/identifier.rs +++ b/common/src/identifier.rs @@ -56,7 +56,8 @@ pub fn get_unique_identifier() -> Option { if let Ok(output) = Command::new("dmidecode") .arg("-s") .arg("system-uuid") - .output() { + .output() + { let identifier = String::from_utf8_lossy(&output.stdout).trim().to_owned(); if !identifier.is_empty() { return Some(identifier.to_string()); @@ -74,4 +75,4 @@ pub fn get_unique_identifier() -> Option { } None -} \ No newline at end of file +}