Skip to content

Commit

Permalink
fix windows tests again
Browse files Browse the repository at this point in the history
  • Loading branch information
wolmir committed Oct 4, 2022
1 parent 257daf6 commit 92e616f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion languageServer/src/LanguageServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class LanguageServer {
const filePath = this.getFilePathFromSymbol(symbolUnderCursor)

const matchingFiles = allDocs.filter(doc =>
URI.file(doc.uri).fsPath.endsWith(filePath)
URI.file(doc.uri).path.endsWith(filePath)
)

return matchingFiles.map(doc => {
Expand Down

0 comments on commit 92e616f

Please sign in to comment.