Skip to content

Commit

Permalink
fix(Notification::Win11): Fix double notification
Browse files Browse the repository at this point in the history
Fixes #893
  • Loading branch information
Belphemur authored Jan 24, 2023
1 parent b0ec4ce commit ed20fd5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace SoundSwitch.Framework.NotificationManager
{
public class MMNotificationClient : IMMNotificationClient, IDisposable
{
private record DeviceRole(DataFlow flow, Role role);
private record DeviceRole(DataFlow Flow, Role Role);

public static MMNotificationClient Instance { get; } = new();
private MMDeviceEnumerator _enumerator;
Expand Down Expand Up @@ -169,4 +169,4 @@ public void Dispose()
_enumerator?.Dispose();
}
}
}
}

0 comments on commit ed20fd5

Please sign in to comment.