Bugfix
authorTomas Wenström <tomas.wenstrom@gmail.com>
Mon, 25 Nov 2019 22:52:15 +0000 (23:52 +0100)
committerTomas Wenström <tomas.wenstrom@gmail.com>
Mon, 25 Nov 2019 22:52:15 +0000 (23:52 +0100)
src/kaka/cakelight/Commands.java

index 048e6c6..f527c12 100644 (file)
@@ -64,7 +64,7 @@ class Commands {
     static Console.Command brightness() {
        return command(new String[] {"b", "brightness"}, (console, args) -> {
            if (args.length == 1) {
-               int b = Integer.parseInt(args[0].replaceAll("\\+-", ""));
+               int b = Integer.parseInt(args[0].replaceAll("[+-]+", ""));
                if (args[0].startsWith("+")) {
                    b = Math.min(console.getConfig().leds.brightness + b, 31);
                } else if (args[0].startsWith("-")) {