Skip to content

Commit

Permalink
Merge featurecat#802 again for bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiraoka committed Aug 31, 2021
2 parents 37e5d66 + 64dc629 commit 217db17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/featurecat/lizzie/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ private boolean checkEmptyBlunderThresholds(JSONObject ui) {
String theme = ui.optString("theme", "");
JSONArray blunderWinrateThresholds = ui.optJSONArray("blunder-winrate-thresholds");
JSONArray blunderNodeColors = ui.optJSONArray("blunder-node-colors");
boolean isDefaultTheme = theme.equals("Default");
boolean isDefaultTheme = theme.toLowerCase().equals("default");
boolean isEmptyBlunderWinrateThresholds =
(blunderWinrateThresholds == null || blunderWinrateThresholds.length() == 0);
boolean isEmptyBlunderNodeColors =
Expand Down

0 comments on commit 217db17

Please sign in to comment.