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
Problem Vendor information is always null, even for known mac-address ranges.
Analysis Keys in mac-vendors-export.csv are semicolon-separated in upper case.
On line 20 in VendorTable the first three mac address parts is joined without upper case.
Resolution Add .toUpperCase()to arpData.macAddress.split(pattern).sublist(0, 3).join()on line 20
.toUpperCase()
arpData.macAddress.split(pattern).sublist(0, 3).join()
The text was updated successfully, but these errors were encountered:
Fixed issue osociety#178
8b85940
a2ef232
Nice catch
Sorry, something went wrong.
Closing, will be merged in the new version.
Thanks
kengu
No branches or pull requests
Problem
Vendor information is always null, even for known mac-address ranges.
Analysis
Keys in mac-vendors-export.csv are semicolon-separated in upper case.
On line 20 in VendorTable the first three mac address parts is joined without upper case.
Resolution
Add
.toUpperCase()
toarpData.macAddress.split(pattern).sublist(0, 3).join()
on line 20The text was updated successfully, but these errors were encountered: