Fix GetReactionUsersAsync (#1151)

This commit is contained in:
Paulo
2018-09-28 19:22:48 -03:00
committed by Christopher F
parent efaedac98f
commit c898325e45

View File

@@ -71,7 +71,7 @@ namespace Discord.Rest
}, },
nextPage: (info, lastPage) => nextPage: (info, lastPage) =>
{ {
if (lastPage.Count != DiscordConfig.MaxUsersPerBatch) if (lastPage.Count != DiscordConfig.MaxUserReactionsPerBatch)
return false; return false;
info.Position = lastPage.Max(x => x.Id); info.Position = lastPage.Max(x => x.Id);