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),
|
CHOSEN_INLINE_QUERY(Update::hasChosenInlineQuery),
|
||||||
|
|
||||||
// Message Flags
|
// Message Flags
|
||||||
REPLY(update -> update.getMessage().isReply()),
|
REPLY(upd -> MESSAGE.test(upd) && upd.getMessage().isReply()),
|
||||||
DOCUMENT(upd -> upd.getMessage().hasDocument()),
|
DOCUMENT(upd -> MESSAGE.test(upd) && upd.getMessage().hasDocument()),
|
||||||
TEXT(upd -> upd.getMessage().hasText()),
|
TEXT(upd -> MESSAGE.test(upd) && upd.getMessage().hasText()),
|
||||||
PHOTO(upd -> upd.getMessage().hasPhoto()),
|
PHOTO(upd -> MESSAGE.test(upd) && upd.getMessage().hasPhoto()),
|
||||||
LOCATION(upd -> upd.getMessage().hasLocation()),
|
LOCATION(upd -> MESSAGE.test(upd) && upd.getMessage().hasLocation()),
|
||||||
CAPTION(upd -> nonNull(upd.getMessage().getCaption()));
|
CAPTION(upd -> MESSAGE.test(upd) && nonNull(upd.getMessage().getCaption()));
|
||||||
|
|
||||||
private final Predicate<Update> predicate;
|
private final Predicate<Update> predicate;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user