Fix compile error

This commit is contained in:
Jordan Brown
2018-07-22 17:03:27 -04:00
parent fa20cf6ad9
commit 2b3346af52
@@ -265,7 +265,7 @@ namespace Tgstation.Server.Host.Components.Chat.Providers
client.WriteLine("CAP END", Priority.Critical);
}
listenTask = Task.Factory.StartNew(client.Listen(), cancellationToken, TaskCreationOptions.LongRunning, TaskScheduler.Current);
listenTask = Task.Factory.StartNew(() => client.Listen(), cancellationToken, TaskCreationOptions.LongRunning, TaskScheduler.Current);
}
catch (Exception e)
{