Skip to content

Commit

Permalink
fix: Wrong page token parameter name in PipelinesApiClient
Browse files Browse the repository at this point in the history
  • Loading branch information
memoryz committed Mar 8, 2024
1 parent 60fed0c commit fedd243
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public async Task<PipelinesList> List(int maxResults = 25, string pageToken = de

if (!string.IsNullOrEmpty(pageToken))
{
requestUriSb.Append($"&pageToken={pageToken}");
requestUriSb.Append($"&page_token={pageToken}");
}

var requestUri = requestUriSb.ToString();
Expand Down

0 comments on commit fedd243

Please sign in to comment.