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 dad9e18 commit d4a6b68Copy full SHA for d4a6b68
Source/FikaAmazonAPI/Services/ReportService.cs
@@ -39,7 +39,7 @@ public async Task<List<Report>> GetReportsAsync(ParameterReportList parameterRep
39
40
while (!string.IsNullOrEmpty(parameterReportList.nextToken))
41
{
42
- var nextTokenResponse = GetReportsByNextToken(parameterReportList);
+ var nextTokenResponse = await GetReportsByNextTokenAsync(parameterReportList);
43
list.AddRange(nextTokenResponse.Reports);
44
parameterReportList.nextToken = nextTokenResponse.NextToken;
45
}
0 commit comments