We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7c6755f + 7ab6791 commit f3f6405Copy full SHA for f3f6405
api-demo/src/demo/envoy.rs
@@ -182,6 +182,7 @@ impl Envoy {
182
// we're not paired yet. The other commands use the first paired device.
183
let body = QuantumLinkMessage::PairingRequest(PairingRequest {
184
xid_document: vec![],
185
+ device_name: String::new(),
186
})
187
.encode();
188
let response = self
api/src/api/pairing.rs
@@ -23,4 +23,6 @@ pub struct PairingResponse {
23
pub struct PairingRequest {
24
#[n(0)]
25
pub xid_document: Vec<u8>,
26
+ #[n(1)]
27
+ pub device_name: String,
28
}
0 commit comments