mirror of
https://github.com/servo/servo.git
synced 2025-07-23 23:33:43 +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() {
|
||||
"broadcast" => props.insert(BROADCAST),
|
||||
"read" => props.insert(READ),
|
||||
"write_without_response" => props.insert(WRITE_WITHOUT_RESPONSE),
|
||||
"write-without-response" => props.insert(WRITE_WITHOUT_RESPONSE),
|
||||
"write" => props.insert(WRITE),
|
||||
"notify" => props.insert(NOTIFY),
|
||||
"indicate" => props.insert(INDICATE),
|
||||
"authenticated_signed_writes" => props.insert(AUTHENTICATED_SIGNED_WRITES),
|
||||
"reliable_write" => props.insert(RELIABLE_WRITE),
|
||||
"writable_auxiliaries" => props.insert(WRITABLE_AUXILIARIES),
|
||||
"authenticated-signed-writes" => props.insert(AUTHENTICATED_SIGNED_WRITES),
|
||||
"reliable-write" => props.insert(RELIABLE_WRITE),
|
||||
"writable-auxiliaries" => props.insert(WRITABLE_AUXILIARIES),
|
||||
_ => (),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue