Skip to content

Commit

Permalink
fix finding
Browse files Browse the repository at this point in the history
  • Loading branch information
commjoen committed Oct 9, 2024
1 parent 97ffca6 commit b45079a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public class ChallengesCtfController {
private final Challenges challenges;
private final ChallengeDefinitionsConfiguration wrongSecretsConfiguration;
private final RuntimeEnvironment runtimeEnvironment;
private final String disabledChallenge = "This challenge is disbled";

public ChallengesCtfController(
ScoreCard scoreCard,
Expand Down Expand Up @@ -54,6 +53,7 @@ public String getChallenges() {
jsonChallenge.put("name", definition.name().name());
jsonChallenge.put("key", definition.name().shortName());
jsonChallenge.put("category", getCategory() + " - " + definition.category().category());
String disabledChallenge = "This challenge is disbled";
jsonChallenge.put(
"description",
definition
Expand Down

0 comments on commit b45079a

Please sign in to comment.