Update Using-Replies.md

The Consumer has the variable name of "action" not "upd".
This commit is contained in:
Baspla 2018-02-23 20:23:04 +01:00 committed by GitHub
parent 6db6c4bf0d
commit adced55fdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ public Reply sayYuckOnImage() {
// getChatId is a public utility function in rg.telegram.abilitybots.api.util.AbilityUtils // getChatId is a public utility function in rg.telegram.abilitybots.api.util.AbilityUtils
Consumer<Update> action = upd -> silent.send("Yuck", getChatId(upd)); Consumer<Update> action = upd -> silent.send("Yuck", getChatId(upd));
return Reply.of(upd, Flag.PHOTO) return Reply.of(action, Flag.PHOTO)
} }
``` ```