ConfigureAwait ALL THE THINGS

This commit is contained in:
Master Kwoth
2016-04-18 23:38:19 +02:00
parent f8d52e2307
commit 113c2b43bd
56 changed files with 871 additions and 810 deletions

View File

@ -23,7 +23,7 @@ namespace NadekoBot.Modules.Permissions.Classes
while (true)
{
//blacklist is cleared every 1.75 seconds. That is the most time anyone will be blocked
await Task.Delay(1750);
await Task.Delay(1750).ConfigureAwait(false);
timeBlackList.Clear();
}
});