Skip to content

Commit

Permalink
Update pic-sure-auth-services/src/main/java/edu/harvard/hms/dbmi/avil…
Browse files Browse the repository at this point in the history
…lach/auth/service/impl/AccessRuleService.java
  • Loading branch information
Gcolon021 authored Sep 6, 2024
1 parent 0c6f88b commit c5194b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1004,7 +1004,7 @@ protected AccessRule createPhenotypeSubRule(String conceptPath, String alias, St

// Check if the conceptPath has `\\\\` present. This technically represents `\\`.
if(conceptPath != null && conceptPath.contains("\\\\")) {
//replaceall regex needs to be double escaped (again)
// This will convert all `\\\\` to `\\`.
conceptPath = conceptPath.replaceAll("\\\\\\\\", "\\\\");
}

Expand Down

0 comments on commit c5194b2

Please sign in to comment.