diff options
Diffstat (limited to 'components/script/dom/bluetooth.rs')
-rw-r--r-- | components/script/dom/bluetooth.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/components/script/dom/bluetooth.rs b/components/script/dom/bluetooth.rs index b59c4bf49cd..c5985ac0964 100644 --- a/components/script/dom/bluetooth.rs +++ b/components/script/dom/bluetooth.rs @@ -334,7 +334,8 @@ where single, child_type, sender, - )).unwrap(); + )) + .unwrap(); return p; } @@ -694,7 +695,8 @@ impl PermissionAlgorithm for Bluetooth { device_id.clone(), BluetoothScanfilterSequence::new(scan_filters), sender, - )).unwrap(); + )) + .unwrap(); match receiver.recv().unwrap() { Ok(true) => (), |