Fixed some of the compiler warnings.
This commit is contained in:
@@ -29,7 +29,9 @@ namespace TwitchChatTTS.Twitch.Socket.Handlers
|
||||
|
||||
long broadcasterId = long.Parse(message.BroadcasterUserId);
|
||||
long chatterId = message.UserId == null ? 0 : long.Parse(message.UserId);
|
||||
#pragma warning disable CS4014 // Because this call is not awaited, execution of the current method continues before the call is completed
|
||||
Task.Run(async () => await _reader.Read(sender, broadcasterId, chatterId, message.UserLogin, null, null, message.Message.Fragments, 100));
|
||||
#pragma warning restore CS4014 // Because this call is not awaited, execution of the current method continues before the call is completed
|
||||
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user