Skip to content

Commit

Permalink
Fix origin paths on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipK committed Apr 13, 2022
1 parent fc40457 commit 4fb28b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/origin/origin_platform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ fn get_default_locations() -> OriginPathData {
let origin_folder = Path::new(&program_data)
.join("Origin");
if origin_folder.exists(){
res.exe_path = Some(origin_folder.to_owned());
res.local_content_path = Some(origin_folder.to_owned());
}
}
res
Expand Down

0 comments on commit 4fb28b3

Please sign in to comment.