1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-06-24 21:25:23 +00:00

Electron: Use friendlier network interface names on Windows

This commit is contained in:
Michael Hollister 2025-04-30 10:18:41 -05:00
parent 3c72010604
commit 7b5d48cab9

View file

@ -30,7 +30,7 @@ function networkStateChangeListener(forceUpdate: boolean) {
});
if (!isWireless) {
interfaces.push({ type: 'wired', name: iface.ifaceName, address: iface.ip4 });
interfaces.push({ type: 'wired', name: iface.iface, address: iface.ip4 });
}
}
}