v2.3.0 #5

Merged
blizzardfinnegan merged 13 commits from devel into stable 2023-06-19 15:34:18 -04:00
Showing only changes of commit 3070e42945 - Show all commits

View file

@ -357,7 +357,7 @@ impl Device{
if !line.contains(':') { continue; }
let (section,value) = line.split_once(':').unwrap();
if section.contains(SERIAL_HEADER){
self.serial = value.replace("\"","");
self.serial = value.trim().replace("\"","");
}
}
},