Prepare new release

This commit is contained in:
Luke D. Jones
2024-05-14 17:08:08 +12:00
parent 6b129763d4
commit 66a501ecf6
9 changed files with 76 additions and 52 deletions

View File

@@ -26,7 +26,7 @@ pub(super) fn filename_partial(parent: &Device) -> Option<OwnedObjectPath> {
};
if path.contains('.') {
warn!("dbus path for {id_product} contains `.`, removing");
path = path.replace('.', "").to_owned();
path.replace('.', "").clone_into(&mut path);
}
return Some(ObjectPath::from_str_unchecked(&path).into());
}