diff --git a/src/main/java/org/asamk/signal/commands/SendPollVoteCommand.java b/src/main/java/org/asamk/signal/commands/SendPollVoteCommand.java index 4b36da2e..87ecde55 100644 --- a/src/main/java/org/asamk/signal/commands/SendPollVoteCommand.java +++ b/src/main/java/org/asamk/signal/commands/SendPollVoteCommand.java @@ -41,7 +41,9 @@ public class SendPollVoteCommand implements JsonRpcLocalCommand { .help("If self is part of recipients/groups send a normal message, not a sync message.") .action(Arguments.storeTrue()); - subparser.addArgument("--poll-author").help("Specify the number of the author of the poll message."); + subparser.addArgument("--poll-author") + .help("Specify the number of the author of the poll message.") + .required(true); subparser.addArgument("--poll-timestamp") .type(long.class) .help("Specify the timestamp of the original poll message.")