We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23ba9fc commit 3d8416aCopy full SHA for 3d8416a
src/Nullinside.Api.Common/Twitch/TwitchClientProxy.cs
@@ -61,12 +61,12 @@ public class TwitchClientProxy : ITwitchClientProxy {
61
/// <summary>
62
/// The callback(s) to invoke when a channel is raided.
63
/// </summary>
64
- private Dictionary<string, Action<OnRaidNotificationArgs>?> onRaid;
+ private Dictionary<string, Action<OnRaidNotificationArgs>?> onRaid = new();
65
66
67
/// The callback(s) to invoke when a channel receives a ban message.
68
69
- private Dictionary<string, Action<OnUserBannedArgs>?> onUserBanReceived;
+ private Dictionary<string, Action<OnUserBannedArgs>?> onUserBanReceived = new();
70
71
72
/// The web socket to connect to twitch chat with.
0 commit comments