Skip to content

Commit

Permalink
Fix: Changed the limit for the label API call to the max.
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonMulligan committed Mar 2, 2020
1 parent 53948cf commit 847f534
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Services/TrelloService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,8 @@ public async Task<List<TrelloLabelsDto>> GetTrelloLabels()
{
var url = "https://api.trello.com/1/boards/" + SolutionConstants.kTrelloBoardId + "/labels/"
+ "?key=" + SolutionConstants.kTrelloAppKey
+ "&token=" + SolutionConstants.kTrelloUserToken;
+ "&token=" + SolutionConstants.kTrelloUserToken
+ "&limit=1000";

var response = await http.GetAsync(url);

Expand Down

0 comments on commit 847f534

Please sign in to comment.