value doesnt have to be lowercase

This commit is contained in:
babbaj 2019-01-07 01:16:52 -05:00
parent 712a0a3905
commit 227b303669
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ public class SettingsUtil {
}
String settingName = matcher.group("setting").toLowerCase();
String settingValue = matcher.group("value").toLowerCase();
String settingValue = matcher.group("value");
try {
parseAndApply(settings, settingName, settingValue);
} catch (Exception ex) {