Skip to content

Commit

Permalink
Fix calling wrong method
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjmchugh committed Nov 29, 2024
1 parent debe439 commit 3be7918
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1041,6 +1041,6 @@ public String selectOneWithRegexSearchAndReplaceWithFlags(String uuid, String se

@Override
public String selectOneWithRegexSearchAndReplace(String uuid, String search, String replace) {
return metadataRepository.selectOneWithSearchAndReplace(uuid, search, replace);
return metadataRepository.selectOneWithRegexSearchAndReplace(uuid, search, replace);
}
}

0 comments on commit 3be7918

Please sign in to comment.