Skip to content
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

Make it possible to read updates in listening mode #315

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

leonovk
Copy link

@leonovk leonovk commented Oct 28, 2024

I had a need for the bot to read all incoming updates when it was in polling mode, not just messages. This is very useful when, for example, you need the bot to work in polling mode in one environment and via webhooks in another, without changing the code itself.

It will look like this:

  Telegram::Bot::Client.run(token, listen_update_mode: true) do |bot|
    bot.listen do |update|
      # something
    end
  end

@leonovk
Copy link
Author

leonovk commented Oct 28, 2024

UPD also fixed the fallen linter

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant