Fixed copy/paste bug, did not want the filtered behavior. This was copied from elsewhere during refactoring.

servicizing
Sean McArdle 2016-03-29 17:57:34 -07:00
parent 5cf9b27f96
commit b4ee5ba74e
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ namespace WifiSitter
var nics = NetworkState.QueryNetworkAdapters(_ignoreNics);
List<SitterNic> nicsPost;
var netsh = NetshHelper.GetInterfaces()?.Where(x => !(nics.Select(y => y.Nic.Name).Contains(x.InterfaceName))).ToList();
var netsh = NetshHelper.GetInterfaces();
List<NetshInterface> notInNetstate = new List<NetshInterface>();
if (netsh != null)