Skip to content

Commit 8cd2e4e

Browse files
authored
fix delete webhook url
1 parent 34a20ea commit 8cd2e4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitLabApiClient/WebhookClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public async Task<Webhook> CreateAsync(ProjectId projectId, CreateWebhookRequest
5353
/// <param name="projectId">The ID, path or <see cref="Project"/> of the project.</param>
5454
/// <param name="hookId">The hook ID, you want to delete.</param>
5555
public async Task DeleteAsync(ProjectId projectId, int hookId) =>
56-
await _httpFacade.Delete($"projects/{projectId}/hooks/${hookId}");
56+
await _httpFacade.Delete($"projects/{projectId}/hooks/{hookId}");
5757
}
5858

5959

0 commit comments

Comments
 (0)