We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be97b1b commit 0dd1ef2Copy full SHA for 0dd1ef2
SoundSwitch.Common/Framework/Audio/Device/DeviceInfo.cs
@@ -90,6 +90,8 @@ public bool Equals(DeviceInfo other)
90
if (Type != other.Type) return false;
91
//Same Id, it's the same device
92
if (Id == other.Id) return true;
93
+ //Always match on NameClean when Id is different
94
+ //help recognizing the same device
95
return NameClean == other.NameClean;
96
}
97
0 commit comments