Skip to content

Commit 0fec1bc

Browse files
committed
fix #482
1 parent d655dee commit 0fec1bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/FikaAmazonAPI/Services/FbaInventoryService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public async Task<List<InventorySummaries>> GetInventorySummariesAsync(Parameter
3737
var nextToken = response.Pagination.NextToken;
3838
while (!string.IsNullOrEmpty(nextToken))
3939
{
40-
var getInventorySummaries = GetInventorySummariesByNextToken(nextToken, parameter);
40+
var getInventorySummaries = await GetInventorySummariesByNextTokenAsync(nextToken, parameter);
4141
list.Add(getInventorySummaries.Payload.InventorySummaries);
4242
nextToken = getInventorySummaries.Pagination?.NextToken;
4343
}

0 commit comments

Comments
 (0)