Skip to content

Commit 55ebbaf

Browse files
Move to lowercase now that we use Omnisharp's serializer (#2705)
1 parent bf189e5 commit 55ebbaf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/session.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -294,15 +294,15 @@ export class SessionManager implements Middleware {
294294

295295
codeLensToFix.command.arguments = [
296296
vscode.Uri.parse(oldArgs[0]),
297-
new vscode.Position(oldArgs[1].Line, oldArgs[1].Character),
297+
new vscode.Position(oldArgs[1].line, oldArgs[1].character),
298298
oldArgs[2].map((position) => {
299299
return new vscode.Location(
300-
vscode.Uri.parse(position.Uri),
300+
vscode.Uri.parse(position.uri),
301301
new vscode.Range(
302-
position.Range.Start.Line,
303-
position.Range.Start.Character,
304-
position.Range.End.Line,
305-
position.Range.End.Character));
302+
position.range.start.line,
303+
position.range.start.character,
304+
position.range.end.line,
305+
position.range.end.character));
306306
}),
307307
];
308308
}

0 commit comments

Comments
 (0)