We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Settings - Device Row Highlighting - if I select Highlight all Bluetooth device, no bluetooth devices are highlighted
The problem seems to be in http_data/js/kismet.ui.bluetooth.js
The selector:
fields: [ 'bluetooth.device' ], selector: function(data) { return ('bluetooth.device' in data && data['bluetooth.device'] != 0);
does not return anything, I tried changing the selector to be more like the all wifi one:
fields: [ 'kismet.device.base.phyname' ], selector: function(data) { return ('kismet.device.base.phyname' in data && data['kismet.device.base.phyname'] === 'Bluetooth'); }
And that seems to work ok.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In Settings - Device Row Highlighting - if I select Highlight all Bluetooth device, no bluetooth devices are highlighted
The problem seems to be in http_data/js/kismet.ui.bluetooth.js
The selector:
fields: [
'bluetooth.device'
],
selector: function(data) {
return ('bluetooth.device' in data && data['bluetooth.device'] != 0);
does not return anything, I tried changing the selector to be more like the all wifi one:
fields: [
'kismet.device.base.phyname'
],
selector: function(data) {
return ('kismet.device.base.phyname' in data && data['kismet.device.base.phyname'] === 'Bluetooth');
}
And that seems to work ok.
The text was updated successfully, but these errors were encountered: