lwp3-bootloader/sagas-ble: remove obsolete comment

This commit is contained in:
David Lechner
2022-07-15 18:05:48 -05:00
parent a86967573c
commit bfdd7e728b
-2
View File
@@ -120,8 +120,6 @@ function* handleConnect(): Generator {
server.disconnect();
yield* takeMaybe(disconnectChannel);
if (err instanceof DOMException && err.code === DOMException.NOT_FOUND_ERR) {
// Possibly/probably caused by Chrome BlueZ back-end bug
// https://chromium-review.googlesource.com/c/chromium/src/+/2214098
yield* put(didFailToConnect(Reason.GattServiceNotFound));
} else {
yield* put(didFailToConnect(Reason.Unknown, ensureError(err)));