lsp: Do not add trailing slash to workspace folders (#25903)

Closes #25390

Release Notes:

- Fixed issues with ansible-language-server sending phantom diagnostic
updates
This commit is contained in:
Piotr Osiewicz 2025-03-02 23:09:13 +01:00 committed by GitHub
parent 65d92d7278
commit 0e44f93178
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1917,7 +1917,7 @@ impl LocalLspStore {
}
}
language::Attach::Shared => {
let uri = Url::from_directory_path(
let uri = Url::from_file_path(
worktree.read(cx).abs_path().join(&path.path),
);
let key = (worktree_id, server_name.clone());
@ -3825,7 +3825,7 @@ impl LspStore {
}
}
language::Attach::Shared => {
let uri = Url::from_directory_path(
let uri = Url::from_file_path(
worktree.read(cx).abs_path().join(&path.path),
);
let key = (worktree_id, server_name.clone());