Update AppImage

This commit is contained in:
MacRimi
2025-10-02 19:51:53 +02:00
parent f7fb9034ef
commit 6279cc9ec1
3 changed files with 58 additions and 16 deletions

View File

@@ -424,7 +424,13 @@ def get_network_info():
net_if_stats = psutil.net_if_stats()
for interface_name, interface_addresses in net_if_addrs.items():
if interface_name == 'lo': # Skip loopback
# Skip loopback
if interface_name == 'lo':
continue
# Skip virtual interfaces that are not bridges
# Keep: physical interfaces (enp*, eth*, wlan*) and bridges (vmbr*, br*)
if not (interface_name.startswith(('enp', 'eth', 'wlan', 'vmbr', 'br'))):
continue
interface_info = {