Skip to content

Commit

Permalink
Fixed canonical use of fs::path to absolute.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Dec 17, 2024
1 parent e3be6b9 commit 61a50a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/mrvApp/mrvSettingsObject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ namespace mrv
fs::path filePath(str);
if (fs::exists(filePath))
{
auto path = fs::canonical(filePath);
auto path = fs::absolute(filePath);
if (set.find(path.generic_string()) == set.end())
{
set.insert(path.generic_string());
Expand Down

0 comments on commit 61a50a1

Please sign in to comment.