Skip to content

The best way to handle exception #24

@FebriPratama

Description

@FebriPratama

Hello
Im using longpolling to get messages,

net core 3.1
Telegram.BotAPI version 6.6.1

public void StartPolling() { var updates = Bot.GetUpdates<IEnumerable<Update>>(); while (true) { if (updates.Any()) { foreach (var update in updates) { var botInstance = new SidomarBotService(_Token, _configuration); botInstance.OnUpdate(update); } var offset = updates.Last().UpdateId + 1; updates = Bot.GetUpdates<IEnumerable<Update>>(offset); } else { updates = Bot.GetUpdates<IEnumerable<Update>>(); } } }

Whats the best way to handle exception throws by startpolling error such as :

Screenshot 2023-04-17 084604

Metadata

Metadata

Assignees

No one assigned

    Labels

    questionFurther information is requested

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions