Merge pull request #633 from bernikr/dev
AbilityBots: prevent nullPointerExceptions when using message flags
This commit is contained in:
commit
4c5a25302b
@ -27,12 +27,12 @@ public enum Flag implements Predicate<Update> {
|
||||
CHOSEN_INLINE_QUERY(Update::hasChosenInlineQuery),
|
||||
|
||||
// Message Flags
|
||||
REPLY(update -> update.getMessage().isReply()),
|
||||
DOCUMENT(upd -> upd.getMessage().hasDocument()),
|
||||
TEXT(upd -> upd.getMessage().hasText()),
|
||||
PHOTO(upd -> upd.getMessage().hasPhoto()),
|
||||
LOCATION(upd -> upd.getMessage().hasLocation()),
|
||||
CAPTION(upd -> nonNull(upd.getMessage().getCaption()));
|
||||
REPLY(upd -> MESSAGE.test(upd) && upd.getMessage().isReply()),
|
||||
DOCUMENT(upd -> MESSAGE.test(upd) && upd.getMessage().hasDocument()),
|
||||
TEXT(upd -> MESSAGE.test(upd) && upd.getMessage().hasText()),
|
||||
PHOTO(upd -> MESSAGE.test(upd) && upd.getMessage().hasPhoto()),
|
||||
LOCATION(upd -> MESSAGE.test(upd) && upd.getMessage().hasLocation()),
|
||||
CAPTION(upd -> MESSAGE.test(upd) && nonNull(upd.getMessage().getCaption()));
|
||||
|
||||
private final Predicate<Update> predicate;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user