diff --git a/pkg/connector/handletelegram.go b/pkg/connector/handletelegram.go index 685dd18c..221058bc 100644 --- a/pkg/connector/handletelegram.go +++ b/pkg/connector/handletelegram.go @@ -972,6 +972,9 @@ func (t *TelegramClient) onUpdate(ctx context.Context, e tg.Entities, upd tg.Upd return t.onChat(ctx, e, update) case *tg.UpdatePhoneCall: return t.onPhoneCall(ctx, e, update) + case *tg.UpdateUserStatus: + // ignored + return nil default: zerolog.Ctx(ctx).Debug().Type("update_type", update).Msg("Unhandled update type") return nil