Skip to content

Commit f4ff1d9

Browse files
networkInterfaces() fixed getWindowsIEEE8021x issue (windows)
1 parent ea02021 commit f4ff1d9

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page.
9090

9191
| Version | Date | Comment |
9292
| ------- | ---------- | --------------------------------------------------------------------------------------------------- |
93+
| 5.30.7 | 2026-01-31 | `networkInterfaces()` fixed getWindowsIEEE8021x issue (windows) |
9394
| 5.30.6 | 2026-01-22 | `graphics()` improved nvidia-smi detection (windows) |
9495
| 5.30.5 | 2026-01-16 | `networkInterfaces()` fix uppercase iface names (linux) |
9596
| 5.30.4 | 2026-01-15 | `powerShell()` fix UTF8 output (windows) |

docs/history.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@ <h3>Full version history</h3>
5757
</tr>
5858
</thead>
5959
<tbody>
60+
<tr>
61+
<th scope="row">5.30.7
62+
</th>
63+
<td>2026-01-31</td>
64+
<td><span class="code">networkInterfaces()</span> fixed getWindowsIEEE8021x issue (windows)</td>
65+
</tr>
6066
<tr>
6167
<th scope="row">5.30.6
6268
</th>

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
<img class="logo" src="assets/logo.png" alt="logo">
171171
<div class="title">systeminformation</div>
172172
<div class="subtitle"><span id="typed"></span>&nbsp;</div>
173-
<div class="version">New Version: <span id="version">5.30.6</span></div>
173+
<div class="version">New Version: <span id="version">5.30.7</span></div>
174174
<button class="btn btn-light" onclick="location.href='https://github.com/sebhildebrandt/systeminformation'">View on Github <i class=" fab fa-github"></i></button>
175175
</div>
176176
<div class="down">
@@ -212,7 +212,7 @@
212212
<div class="title">Downloads last month</div>
213213
</div>
214214
<div class="col-xl-4 col-lg-4 col-md-4 col-12">
215-
<div class="numbers">941</div>
215+
<div class="numbers">957</div>
216216
<div class="title">Dependents</div>
217217
</div>
218218
</div>

lib/network.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ function getWindowsIEEE8021x(connectionType, iface, ifaces) {
434434
i8021x.state = i8021xState.split(':').pop();
435435
i8021x.protocol = i8021xProtocol.split(':').pop();
436436
}
437-
} catch {
437+
} catch (error) {
438438
if (error.status === 1 && error.stdout.includes('AutoConfig')) {
439439
i8021x.state = 'Disabled';
440440
i8021x.protocol = 'Not defined';

0 commit comments

Comments
 (0)