Skip to content

Commit

Permalink
Fixes missing argument assignment on GetGuildBoostSubscriptionsAsync
Browse files Browse the repository at this point in the history
  • Loading branch information
gehongyan committed Dec 30, 2022
1 parent af895d7 commit 1e0774e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Kook.Net.Rest/KookRestApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ public IAsyncEnumerable<IReadOnlyCollection<BoostSubscription>> GetGuildBoostSub

var ids = new BucketIds(guildId: guildId);
return SendPagedAsync<BoostSubscription>(HttpMethod.Get, (pageSize, page) => $"guild-boost/history?{query}&page_size={pageSize}&page={page}",
ids, clientBucket: ClientBucketType.SendEdit, pageMeta: new PageMeta(pageSize: 50), options: options);
ids, clientBucket: ClientBucketType.SendEdit, pageMeta: new PageMeta(page: fromPage, pageSize: limit), options: options);
}

#endregion
Expand Down

0 comments on commit 1e0774e

Please sign in to comment.