From ea8275042bc54d4a313657738e763a22659f55e3 Mon Sep 17 00:00:00 2001 From: "trop[bot]" <37223003+trop[bot]@users.noreply.github.com> Date: Mon, 20 Dec 2021 12:47:33 +0900 Subject: [PATCH] fix: check for single bluetooth listener (#32244) Co-authored-by: VerteDinde --- lib/browser/api/web-contents.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/browser/api/web-contents.ts b/lib/browser/api/web-contents.ts index 56582425a4180..6c82d9c431efd 100644 --- a/lib/browser/api/web-contents.ts +++ b/lib/browser/api/web-contents.ts @@ -750,7 +750,7 @@ WebContents.prototype._init = function () { }); this.on('select-bluetooth-device', (event, devices, callback) => { - if (this.listenerCount('select-bluetooth-device') === 0) { + if (this.listenerCount('select-bluetooth-device') === 1) { // Cancel it if there are no handlers event.preventDefault(); callback('');