Fixed several potential deadlocks

This commit is contained in:
RogueException
2016-01-13 22:03:10 -04:00
parent 2f8754091e
commit a2c9373ed6
10 changed files with 35 additions and 34 deletions

View File

@@ -62,7 +62,7 @@ namespace Discord.Commands
await replyChannel.SendMessage("Unable to display help: Unknown command.").ConfigureAwait(false);
}
else //Show general help
await ShowGeneralHelp(e.User, e.Channel, replyChannel);
await ShowGeneralHelp(e.User, e.Channel, replyChannel).ConfigureAwait(false);
});
}