We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ad3ba6 commit 4a7eb9dCopy full SHA for 4a7eb9d
core/serial_web_bluetooth.js
@@ -11,7 +11,8 @@
11
}
12
13
function checkCompatibility() {
14
- if (navigator.bluetooth.requestDevice.toString().indexOf('callExtension') >= 0) {
+ if (navigator.bluetooth.requestDevice &&
15
+ navigator.bluetooth.requestDevice.toString().indexOf('callExtension') >= 0) {
16
console.log("Using Urish's Windows 10 Web Bluetooth Polyfill");
17
} else if (navigator.platform.indexOf("Win")>=0 &&
18
(navigator.userAgent.indexOf("Chrome/")>=0)) {
0 commit comments