Added ConfigureAwait(false) where missing

This commit is contained in:
RogueException
2015-10-25 06:30:06 -03:00
parent f44afd6196
commit 7e2093e454
12 changed files with 31 additions and 30 deletions

View File

@@ -110,7 +110,7 @@ namespace Discord.Commands
{
var task = cmd.Handler(eventArgs);
if (task != null)
await task;
await task.ConfigureAwait(false);
}
catch (Exception ex)
{