Skip to content

Commit

Permalink
fix darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
dippindots committed Feb 6, 2024
1 parent 848f3ce commit 4c65f5f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -315,12 +315,12 @@ public String getFrontendUrl(String propertyValue) {
public String enableDarwin() {
String darwinAuthUrl = env.getProperty("darwin.auth_url", "");
String ddpResponseUrl = env.getProperty("ddp.response_url", "");
String cisUser = env.getProperty("darwin.auth_url", "");
String cisUser = env.getProperty("cis.user", "");
String darwinRegex = env.getProperty("darwin.regex", "");
if (!darwinAuthUrl.isBlank() && !ddpResponseUrl.isBlank() && !cisUser.isBlank() && !darwinRegex.isBlank()) {
return "\"true\"";
return "true";
} else {
return "\"false\"";
return "false";
}
}

Expand Down

0 comments on commit 4c65f5f

Please sign in to comment.