Skip to content

Commit f94c684

Browse files
authored
Add period querystring using lowercase. (#17)
* Add period querystring using lowercase. Fixes #16
1 parent b5261d8 commit f94c684

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FinancialModelingPrepApi/Core/Statistics/StockStatisticsProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public Task<ApiResponse<List<AnalystEstimateItem>>> GetAnalystEstimatesAsync(str
3232

3333
var queryString = new QueryStringBuilder();
3434

35-
queryString.Add("period", period);
35+
queryString.Add("period", period.ToString().ToLower());
3636

3737
if (limit != null)
3838
{

0 commit comments

Comments
 (0)