Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: oldheating gps motorhome heating
Diff: base/net/web-net-class.js
- Revision:
- 147:ea6f647725a1
- Parent:
- 146:6bc151bd7063
--- a/base/net/web-net-class.js Mon Jan 04 16:09:03 2021 +0000
+++ b/base/net/web-net-class.js Sun Jan 10 11:53:12 2021 +0000
@@ -39,6 +39,13 @@
}
static getVendorFromLocalStorage(mac)
{
+ if (mac[1] === '2' ||
+ mac[1] === '6' ||
+ mac[1] === 'a' ||
+ mac[1] === 'A' ||
+ mac[1] === 'e' ||
+ mac[1] === 'E' ) return '(Locally administered)';
+
return localStorage.getItem(mac);
}
static clearVendorsFromLocalStorage()