Skip to content

Commit

Permalink
Fix Named position issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjdk committed Jan 27, 2025
1 parent eca0270 commit d08e1ea
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/TrelloDotNet/TrelloClient.Cards.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ public async Task<Card> AddCardAsync(AddCardOptions options, CancellationToken c
}

QueryParameter[] parameters = _queryParametersBuilder.GetViaQueryParameterAttributes(input);
_queryParametersBuilder.AdjustForNamedPosition(parameters, input.NamedPosition);
Card addedCard = await _apiRequestController.Post<Card>($"{UrlPaths.Cards}", cancellationToken, parameters);

bool needGet = false;
Expand Down

0 comments on commit d08e1ea

Please sign in to comment.