We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d655dee commit 0fec1bcCopy full SHA for 0fec1bc
Source/FikaAmazonAPI/Services/FbaInventoryService.cs
@@ -37,7 +37,7 @@ public async Task<List<InventorySummaries>> GetInventorySummariesAsync(Parameter
37
var nextToken = response.Pagination.NextToken;
38
while (!string.IsNullOrEmpty(nextToken))
39
{
40
- var getInventorySummaries = GetInventorySummariesByNextToken(nextToken, parameter);
+ var getInventorySummaries = await GetInventorySummariesByNextTokenAsync(nextToken, parameter);
41
list.Add(getInventorySummaries.Payload.InventorySummaries);
42
nextToken = getInventorySummaries.Pagination?.NextToken;
43
}
0 commit comments