Nulldisk
Nulldisk
How did you install boost? Did you download it from boost.org or via vcpkg?
It seems like cmake can't find the static build of boost Can you try this: 1. Go to the directory of boost 2. Run bootstrap.bat 3. Run b2 install --prefix=PREFIX...
Thanks! If you set the value to 4, an error should appear, because you don't have 5 options
No, that's not supposed to happen. How long does it take for the thread to be locked?
I don't understand the error message. I assume it's something about memory access? If you debug this code section, then the error appears at the line with the deleteMessage()? I...
Yes, there is an error because replyToMessage (the already deleted message in this case) doesn't exist and points to zero. You would first have to check whether the message that...
Thanks! You can now add a listener with [onPoll](https://llnulldisk.github.io/tgbot-cpp/class_tg_bot_1_1_event_broadcaster.html#a2c6cfe304bd79c7d6432863cd7b399c3) or with [onPollAnswer](https://llnulldisk.github.io/tgbot-cpp/class_tg_bot_1_1_event_broadcaster.html#a47966cd0aefa177879b728dfff994e41) depending on which Update object you need
As stated in the docs, onPollAnswer fires, if someone answers the poll or if someone changes the answer in the poll sent by the bot. onPoll refers to the status...
onPollAnswer: > Registers listener which receives an answer if a user changed their answer in a ***non-anonymous*** poll. Does it help if you set `isAnonymous = false` instead of true?