-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
removeReplyKeyboard not working #130
Comments
Hi @panditjs |
Ok i downgrade to previous version 2.2.1 and it work again perfecly thanks
…On Tue, Nov 7, 2023, 16:36 Tolentino Cotesta ***@***.***> wrote:
Hi @panditjs <https://github.com/panditjs>
This bug should be fixed with latest release.
—
Reply to this email directly, view it on GitHub
<#130 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AEOBVU7ER53E7Y2OIFMSIGDYDH6IZAVCNFSM6AAAAAA6YDWDO6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTOOJYGEZTGOJSGI>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
I will try the new version 2.2.3 thanks
…On Tue, Nov 7, 2023, 16:47 pandit j s ***@***.***> wrote:
Ok i downgrade to previous version 2.2.1 and it work again perfecly thanks
On Tue, Nov 7, 2023, 16:36 Tolentino Cotesta ***@***.***>
wrote:
> Hi @panditjs <https://github.com/panditjs>
> This bug should be fixed with latest release.
>
> —
> Reply to this email directly, view it on GitHub
> <#130 (comment)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/AEOBVU7ER53E7Y2OIFMSIGDYDH6IZAVCNFSM6AAAAAA6YDWDO6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTOOJYGEZTGOJSGI>
> .
> You are receiving this because you were mentioned.Message ID:
> ***@***.***>
>
|
................ --------------- CUT HERE FOR EXCEPTION DECODER --------------- Exception (28):
ctx: cont --------------- CUT HERE FOR EXCEPTION DECODER --------------- ets Jan 8 2013,rst cause:2, boot mode:(3,6) load 0x4010f000, len 3424, room 16 |
replaykeyboard could not remove please help
code has change from previous release
bool AsyncTelegram2::removeReplyKeyboard(const TBMessage &msg, const char *message, bool selective)
{
// DynamicJsonDocument root(BUFFER_SMALL);
StaticJsonDocument<BUFFER_SMALL> root;
root["remove_keyboard"] = true;
root["selective"] = selective ? "true" : "false";
// root.shrinkToFit();
size_t len = measureJson(root);
char payload[len];
serializeJson(root, payload, len);
debugJson(root, Serial);
return sendMessage(msg, message, payload);
}
The text was updated successfully, but these errors were encountered: