Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
meetmangukiya committed Oct 18, 2023
1 parent a72133c commit 31eb8dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ impl BackendState {
{
let path = {
let fpath = root.join(file);
fpath.to_str().map(|p| format!("{}", p))
fpath.to_str().map(|p| p.to_string())
};
if let Some(path) = path {
let url_string = format!("file://{}", path);
Expand Down

0 comments on commit 31eb8dc

Please sign in to comment.