final List<String> recipients = ns.getList("recipient");
final var isEndSession = ns.getBoolean("endsession");
final var groupIdString = ns.getString("group");
- final var isNoteToSelf = ns.getBoolean("note_to_self");
+ final var isNoteToSelf = ns.getBoolean("note-to-self");
final var noRecipients = recipients == null || recipients.isEmpty();
if ((noRecipients && isEndSession) || (noRecipients && groupIdString == null && !isNoteToSelf)) {
}
if (!noRecipients && isNoteToSelf) {
throw new UserErrorException(
- "You cannot specify recipients by phone number and not to self at the same time");
+ "You cannot specify recipients by phone number and note to self at the same time");
}
if (isEndSession) {