1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-05 02:39:53 +02:00

Fix assigning_clones

Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
Christian König 2024-05-11 18:53:46 +00:00
parent 5fc8d2d3e6
commit 0884a0d76a
No known key found for this signature in database
2 changed files with 10 additions and 10 deletions

View file

@ -239,9 +239,9 @@ impl SpClient {
let android_data = platform_data.mut_android();
android_data.android_version = os_version;
android_data.api_version = 31;
android_data.device_name = "Pixel".to_owned();
android_data.model_str = "GF5KQ".to_owned();
android_data.vendor = "Google".to_owned();
"Pixel".clone_into(&mut android_data.device_name);
"GF5KQ".clone_into(&mut android_data.model_str);
"Google".clone_into(&mut android_data.vendor);
}
"macos" => {
let macos_data = platform_data.mut_desktop_macos();