Skip to content
New issue

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

Device Row Highlighting - All Bluetooth devices doesn't work #529

Open
cjmair opened this issue Aug 28, 2024 · 0 comments
Open

Device Row Highlighting - All Bluetooth devices doesn't work #529

cjmair opened this issue Aug 28, 2024 · 0 comments

Comments

@cjmair
Copy link

cjmair commented Aug 28, 2024

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant