ulixee / unblocked

A suite of tools for protecting the web's open knowledge.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Linux failing bluetooth check from creeps

blakebyrnes opened this issue · comments

Invocation Failed error from emulation

const getBluetoothAvailability = () => attempt(() => {
			if (
				!('bluetooth' in navigator) ||
				// @ts-ignore
				!navigator.bluetooth ||
				// @ts-ignore
				!navigator.bluetooth.getAvailability) {
				return undefined
			}
			// @ts-ignore
			return navigator.bluetooth.getAvailability()
		}, 'bluetoothAvailability failed')

image