rd181002

Results 2 comments of rd181002

Switching over to Proton 7.0-6 solved the problem for me.

`if(bot.getApi().blockedByUser(message->chat->id)) return;` Adding this condition check to the beginning of each 'listener' solved the problem for me. For instance: ``` bot.getEvents().onAnyMessage([&bot](Message::Ptr message) { if(bot.getApi().blockedByUser(message->chat->id)) return; printf("User wrote %s\n", message->text.c_str()); if...