Skip to content

Commit db8fe24

Browse files
dnaglnmklotas
authored andcommitted
Fixed wrong url (#47)
1 parent b754b5d commit db8fe24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitLabApiClient/MarkdownClient.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ internal MarkdownClient(GitLabHttpFacade httpFacade) =>
1919
_httpFacade = httpFacade;
2020

2121
public async Task<Markdown> RenderAsync(RenderMarkdownRequest request) =>
22-
await _httpFacade.Post<Markdown>($"api/v4/markdown", request);
22+
await _httpFacade.Post<Markdown>($"markdown", request);
2323
}
2424
}

0 commit comments

Comments
 (0)