Remove device_id argument for usbmuxd save pair record

This commit is contained in:
Jackson Coxson
2025-11-10 11:16:40 -07:00
parent 247acb192d
commit fbdc290d88
3 changed files with 2 additions and 8 deletions

View File

@@ -80,7 +80,7 @@ async fn main() {
println!("{}", String::from_utf8(pairing_file.clone()).unwrap());
// Save with usbmuxd
u.save_pair_record(dev.device_id, &dev.udid, pairing_file)
u.save_pair_record(&dev.udid, pairing_file)
.await
.expect("no save");
}