diff --git a/SoundSwitch.Common/Framework/Audio/Collection/DeviceReadOnlyCollection.cs b/SoundSwitch.Common/Framework/Audio/Collection/DeviceReadOnlyCollection.cs index 355b785966..3e67b2d99b 100644 --- a/SoundSwitch.Common/Framework/Audio/Collection/DeviceReadOnlyCollection.cs +++ b/SoundSwitch.Common/Framework/Audio/Collection/DeviceReadOnlyCollection.cs @@ -53,7 +53,7 @@ public IEnumerable IntersectWith(IEnumerable second) return found; } - if (_byId.TryGetValue(info.NameClean, out found)) + if (_byName.TryGetValue(info.NameClean, out found)) { return found; }