diff --git a/osu.Game/Online/Spectator/SpectatorStreamingClient.cs b/osu.Game/Online/Spectator/SpectatorStreamingClient.cs index 10a707a4ce..9def009469 100644 --- a/osu.Game/Online/Spectator/SpectatorStreamingClient.cs +++ b/osu.Game/Online/Spectator/SpectatorStreamingClient.cs @@ -47,7 +47,7 @@ public class SpectatorStreamingClient : Component, ISpectatorClient private readonly BindableList playingUsers = new BindableList(); - private readonly Dictionary currentUserStates = new Dictionary(); + private readonly Dictionary playingUserStates = new Dictionary(); [CanBeNull] private IBeatmap currentBeatmap; @@ -128,7 +128,7 @@ private void load(IAPIProvider api) lock (userLock) { playingUsers.Clear(); - currentUserStates.Clear(); + playingUserStates.Clear(); } } }, true); @@ -142,7 +142,7 @@ Task ISpectatorClient.UserBeganPlaying(int userId, SpectatorState state) if (!playingUsers.Contains(userId)) playingUsers.Add(userId); - currentUserStates[userId] = state; + playingUserStates[userId] = state; } OnUserBeganPlaying?.Invoke(userId, state); @@ -155,7 +155,7 @@ Task ISpectatorClient.UserFinishedPlaying(int userId, SpectatorState state) lock (userLock) { playingUsers.Remove(userId); - currentUserStates.Remove(userId); + playingUserStates.Remove(userId); } OnUserFinishedPlaying?.Invoke(userId, state); @@ -298,7 +298,7 @@ public void BindUserBeganPlaying(Action callback, bool runO lock (userLock) { - foreach (var (userId, state) in currentUserStates) + foreach (var (userId, state) in playingUserStates) callback(userId, state); } }