Исправил баг в SimpleButton

This commit is contained in:
Struchkov Mark 2023-04-07 09:30:52 +03:00
parent 9d39f4d1aa
commit 2f7f84cdf2
Signed by: upagge
GPG Key ID: D3018BE7BA428CA6

View File

@ -50,7 +50,7 @@ public class SimpleButton implements KeyBoardButton {
return new SimpleButton(
label, Arrays.stream(args)
.map(buttonArg -> buttonArg.getType() + ":" + buttonArg.getValue())
.collect(Collectors.joining("[", "]", ";"))
.collect(Collectors.joining(";", "[", "]"))
);
}