Skip to content

Commit

Permalink
Fix path encoding on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-botbol committed Feb 3, 2025
1 parent accd58f commit 2d9e35f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/state.ml
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ let convert_meta_module
let process_document ?previous_file ?contents (uri : string) : t =
let open Catala_utils in
Log.info (fun m -> m "processing document '%s'" uri);
let uri = Uri.(of_string uri |> path |> pct_decode) in
let uri = Uri.pct_decode uri in
let input_src =
match contents with
| None -> Global.FileName uri
Expand Down

0 comments on commit 2d9e35f

Please # to comment.