I try filtering device scan for manufactuerId. ``` this._bluetooth.startScanning({ filters: [{manufacturerId:1212}], seconds: 4, skipPermissionCheck: false, onDiscovered: function (peripheral) { console.log("found device " + peripheral.localName + " mac " + peripheral.UUID + " Man.Id " +peripheral.manufacturerId); } }) ``` but the scan returns all devices.