提交 9d95c6c5 编写于 作者: T Tomas Vik

Merge branch 'fix-file-path-backslashes' into 'main'

Replace all backslashes in file paths with forward slashes

See merge request gitlab-org/gitlab-vscode-extension!144
......@@ -18,7 +18,7 @@ export function toReviewUri({ path = '', commit, workspacePath, projectId }: Rev
export function fromReviewUri(uri: Uri): ReviewParams {
const { commit, workspacePath, projectId } = JSON.parse(uri.query);
return {
path: uri.fsPath || undefined,
path: uri.path || undefined,
commit,
workspacePath,
projectId,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册