Added missing ConfigureAwaits

This commit is contained in:
RogueException
2016-10-08 16:59:17 -03:00
parent 960119d965
commit 5c33e28757
40 changed files with 166 additions and 166 deletions

View File

@@ -45,7 +45,7 @@ namespace Discord
if (_info.Remaining == 0)
return false;
var data = await _source._getPage(_info, cancelToken);
var data = await _source._getPage(_info, cancelToken).ConfigureAwait(false);
Current = new Page<T>(_info, data);
_info.Page++;