trivial clippy fix

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
Fabian Grünbichler 2024-06-24 10:01:13 +02:00
parent 3663ae8255
commit 1ba198265c

View File

@ -95,7 +95,7 @@ fn parse_register_response(
}
info.serverid = Some(server_id.to_owned());
}
"md5hash" => md5hash = value.to_owned(),
"md5hash" => value.clone_into(&mut md5hash),
_ => (),
}
}