mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 02:48:24 +00:00
fix(lsp): panic on url_to_uri() (#25238)
This commit is contained in:
parent
efcabce1c1
commit
97d1635343
11 changed files with 232 additions and 251 deletions
|
@ -76,7 +76,7 @@ impl ReplLanguageServer {
|
|||
.initialize(InitializeParams {
|
||||
process_id: None,
|
||||
root_path: None,
|
||||
root_uri: Some(url_to_uri(&cwd_uri)),
|
||||
root_uri: Some(url_to_uri(&cwd_uri).unwrap()),
|
||||
initialization_options: Some(
|
||||
serde_json::to_value(get_repl_workspace_settings()).unwrap(),
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue