Skip to content

Commit

Permalink
Fixed wrong url (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
dnagl authored and nmklotas committed Sep 12, 2019
1 parent b754b5d commit db8fe24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GitLabApiClient/MarkdownClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ internal MarkdownClient(GitLabHttpFacade httpFacade) =>
_httpFacade = httpFacade;

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

0 comments on commit db8fe24

Please sign in to comment.