mirror of
https://github.com/servo/servo.git
synced 2025-08-02 12:10:29 +01:00
Correcting bluetooth flag strings
This commit is contained in:
parent
997f9f67f0
commit
83681a13a1
1 changed files with 4 additions and 4 deletions
|
@ -465,13 +465,13 @@ impl BluetoothManager {
|
||||||
match flag.as_ref() {
|
match flag.as_ref() {
|
||||||
"broadcast" => props.insert(BROADCAST),
|
"broadcast" => props.insert(BROADCAST),
|
||||||
"read" => props.insert(READ),
|
"read" => props.insert(READ),
|
||||||
"write_without_response" => props.insert(WRITE_WITHOUT_RESPONSE),
|
"write-without-response" => props.insert(WRITE_WITHOUT_RESPONSE),
|
||||||
"write" => props.insert(WRITE),
|
"write" => props.insert(WRITE),
|
||||||
"notify" => props.insert(NOTIFY),
|
"notify" => props.insert(NOTIFY),
|
||||||
"indicate" => props.insert(INDICATE),
|
"indicate" => props.insert(INDICATE),
|
||||||
"authenticated_signed_writes" => props.insert(AUTHENTICATED_SIGNED_WRITES),
|
"authenticated-signed-writes" => props.insert(AUTHENTICATED_SIGNED_WRITES),
|
||||||
"reliable_write" => props.insert(RELIABLE_WRITE),
|
"reliable-write" => props.insert(RELIABLE_WRITE),
|
||||||
"writable_auxiliaries" => props.insert(WRITABLE_AUXILIARIES),
|
"writable-auxiliaries" => props.insert(WRITABLE_AUXILIARIES),
|
||||||
_ => (),
|
_ => (),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue