Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
nickproud committed Jul 3, 2021
2 parents 3c61819 + 189e01e commit 3297255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Server.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public async void Start()
while (Running)
{
var client = await Listener.AcceptTcpClientAsync();
await Task.Run(() => new Channel(this).Open(client));
Task.Run(() => new Channel(this).Open(client));
}

}
Expand Down

0 comments on commit 3297255

Please sign in to comment.