Skip to content

Commit

Permalink
Fix SCIInstitute#2005 by replacing slashes
Browse files Browse the repository at this point in the history
  • Loading branch information
akenmorris committed Feb 15, 2023
1 parent cc4c123 commit 43efba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libs/Project/ProjectUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ StringList ProjectUtils::get_values(StringList prefixes, StringList domain_names
for (auto& [key, value] : key_map) {
for (const auto& prefix : prefixes) {
if (key == prefix + domain) {
values.push_back(value);
values.push_back(StringUtils::replace_string(value, "\\", "/"));
}
}
}
Expand Down

0 comments on commit 43efba5

Please sign in to comment.