wifiNetworks() fix empty issue (mac OS)

This commit is contained in:
Sebastian Hildebrandt 2021-12-07 06:15:04 +01:00
parent c7fbf26b9a
commit 0e62049339
4 changed files with 45 additions and 37 deletions

View File

@ -80,6 +80,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page.
| Version | Date | Comment | | Version | Date | Comment |
| -------------- | -------------- | -------- | | -------------- | -------------- | -------- |
| 5.9.17 | 2021-12-07 | `wifiNetworks()` fix empty issue (mac OS) |
| 5.9.16 | 2021-12-05 | `wifiNetworks()` adaption for Apple silicon (mac OS) | | 5.9.16 | 2021-12-05 | `wifiNetworks()` adaption for Apple silicon (mac OS) |
| 5.9.15 | 2021-11-19 | `cpuCache()` fix (windows) | | 5.9.15 | 2021-11-19 | `cpuCache()` fix (windows) |
| 5.9.14 | 2021-11-17 | `versions()` python 2 monterey (deprecated warning) fix (mac OS) | | 5.9.14 | 2021-11-17 | `versions()` python 2 monterey (deprecated warning) fix (mac OS) |

View File

@ -57,6 +57,11 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr>
<th scope="row">5.9.17</th>
<td>2021-12-07</td>
<td><span class="code">wifiNetworks()</span> fix empty issue (mac OS)</td>
</tr>
<tr> <tr>
<th scope="row">5.9.16</th> <th scope="row">5.9.16</th>
<td>2021-12-05</td> <td>2021-12-05</td>

View File

@ -170,7 +170,7 @@
<img class="logo" src="assets/logo.png"> <img class="logo" src="assets/logo.png">
<div class="title">systeminformation</div> <div class="title">systeminformation</div>
<div class="subtitle"><span id="typed"></span>&nbsp;</div> <div class="subtitle"><span id="typed"></span>&nbsp;</div>
<div class="version">New Version: <span id="version">5.9.16</span></div> <div class="version">New Version: <span id="version">5.9.17</span></div>
<button class="btn btn-light" onclick="location.href='https://github.com/sebhildebrandt/systeminformation'">View on Github <i class=" fab fa-github"></i></button> <button class="btn btn-light" onclick="location.href='https://github.com/sebhildebrandt/systeminformation'">View on Github <i class=" fab fa-github"></i></button>
</div> </div>
<div class="down"> <div class="down">

View File

@ -341,6 +341,7 @@ function getWifiNetworkListIw(iface) {
*/ */
function parseWifiDarwin(wifiObj) { function parseWifiDarwin(wifiObj) {
const result = []; const result = [];
if (wifiObj) {
wifiObj.forEach(function (wifiItem) { wifiObj.forEach(function (wifiItem) {
const signalLevel = wifiItem.RSSI; const signalLevel = wifiItem.RSSI;
let security = []; let security = [];
@ -381,6 +382,7 @@ function parseWifiDarwin(wifiObj) {
wifiItem.BSSID; wifiItem.BSSID;
}); });
}
return result; return result;
} }
function wifiNetworks(callback) { function wifiNetworks(callback) {