Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/GitLabApiClient/BranchClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using GitLabApiClient.Internal.Http;
using GitLabApiClient.Internal.Paths;
using GitLabApiClient.Internal.Queries;
using GitLabApiClient.Internal.Utilities;
using GitLabApiClient.Models.Branches.Requests;
using GitLabApiClient.Models.Branches.Responses;
using GitLabApiClient.Models.Projects.Responses;
Expand Down Expand Up @@ -62,7 +63,7 @@ public async Task<Branch> CreateAsync(ProjectId projectId, CreateBranchRequest r
/// <param name="projectId">The ID, path or <see cref="Project"/> of the project.</param>
/// <param name="branchName">The branch, you want deleted.</param>
public async Task DeleteBranch(ProjectId projectId, string branchName) =>
await _httpFacade.Delete($"projects/{projectId}/repository/branches/{branchName}");
await _httpFacade.Delete($"projects/{projectId}/repository/branches/{branchName.UrlEncode()}");

/// <summary>
/// Deletes the merged branches
Expand Down