update Program.cs for Schnierder

This commit is contained in:
atef 2024-06-05 16:17:49 +02:00
parent 69cfa2e7d7
commit 63dc832a1f
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ var networkInterfaces = await Nic.GetNetworkInterfaces();
var candidates = networkInterfaces.Where(n => n.IsUp &&
n.IsEthernet &&
(!n.Ip4Addresses.Any() || n.Ip4Addresses.Contains(Config.OwnAddress)));
(!n.Ip4Addresses.Any() || n.Ip4Addresses.Contains(Config.OwnAddress)));
foreach (var nic in candidates)
{