Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nayeemrmn committed Jan 27, 2025
1 parent c7d2405 commit 7cb77b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/workspace/resolver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ impl CompilerOptionsRootDirsResolver {
.as_array()?
.iter()
.filter_map(|s| {
Url::from_directory_path(dir_path.join(s.as_str()?)).ok()
url_from_directory_path(&dir_path.join(s.as_str()?)).ok()
})
.collect();
Some(root_dirs)
Expand Down

0 comments on commit 7cb77b8

Please sign in to comment.