Revert "Use a regular expression to split parameters for BotCommands"
This commit is contained in:
parent
1362ace747
commit
2cb51d6af9
@ -11,7 +11,7 @@ import org.telegram.telegrambots.bots.AbsSender;
|
|||||||
*/
|
*/
|
||||||
public abstract class BotCommand {
|
public abstract class BotCommand {
|
||||||
public final static String COMMAND_INIT_CHARACTER = "/";
|
public final static String COMMAND_INIT_CHARACTER = "/";
|
||||||
public static final String COMMAND_PARAMETER_SEPARATOR_REGEXP = "\\s+";
|
public static final String COMMAND_PARAMETER_SEPARATOR = " ";
|
||||||
private final static int COMMAND_MAX_LENGTH = 32;
|
private final static int COMMAND_MAX_LENGTH = 32;
|
||||||
|
|
||||||
private final String commandIdentifier;
|
private final String commandIdentifier;
|
||||||
|
@ -97,7 +97,7 @@ public final class CommandRegistry implements ICommandRegistry {
|
|||||||
String text = message.getText();
|
String text = message.getText();
|
||||||
if (text.startsWith(BotCommand.COMMAND_INIT_CHARACTER)) {
|
if (text.startsWith(BotCommand.COMMAND_INIT_CHARACTER)) {
|
||||||
String commandMessage = text.substring(1);
|
String commandMessage = text.substring(1);
|
||||||
String[] commandSplit = commandMessage.split(BotCommand.COMMAND_PARAMETER_SEPARATOR_REGEXP);
|
String[] commandSplit = commandMessage.split(BotCommand.COMMAND_PARAMETER_SEPARATOR);
|
||||||
|
|
||||||
String command = removeUsernameFromCommandIfNeeded(commandSplit[0]);
|
String command = removeUsernameFromCommandIfNeeded(commandSplit[0]);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user