Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# Change Log

## 0.9.20
- Fix issue where the server would internally format URIs incorrectly in some cases
- The language server logs will now be in local time of whatever machine they are running on, rather than UTC.

## 0.9.19
Expand Down
2 changes: 1 addition & 1 deletion src/lsp_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ pub fn parse_uri(pathb: &str) -> Result<Uri, UriGenerationError> {
""
};

let to_parse = format!("file:{}{}", extra_slash, fixed_path);
let to_parse = format!("file://{}{}", extra_slash, fixed_path);
Uri::from_str(to_parse.as_str())
.map_err(|e|UriGenerationError(
format!("Invalid URI '{}'; {}", to_parse, e)))
Expand Down
Loading