Skip to content

Commit

Permalink
secretTag error catch
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Apr 2, 2022
1 parent 5ec8042 commit ef5d704
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -101,6 +101,9 @@ public boolean isValid() {
}

public String getValue() {
if (secretsFile == null) {
return null;
}
return secretsFile.getString(key);
}

Expand Down

0 comments on commit ef5d704

Please sign in to comment.