We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The text was updated successfully, but these errors were encountered:
d, err := client.GetDialogs(&tg.DialogOptions{ Limit: 500, }) for _, v := range d { switch dx := v.(type) { case *tg.DialogObj: peer, err := client.GetSendablePeer(dx.Peer) if err != nil { client.Logger.Error(err) continue } switch peer.(type) { case *tg.InputPeerChannel: channel, _ := client.GetChannel(peer.(*tg.InputPeerChannel).ChannelID) client.Logger.Info(fmt.Sprintf("Channel: %s", channel.Title)) case *tg.InputPeerChat: chat, _ := client.GetChat(peer.(*tg.InputPeerChat).ChatID) client.Logger.Info(fmt.Sprintf("Chat: %s", chat.Title)) } } }
FIXED
Sorry, something went wrong.
2024/12/16 09:03:36 [error] gogram [mtproto] {pbot} - reconnecting: recreating connection: creating transport: setup connection: dialing tcp: dial tcp 91.108.56.104:443: connect: connection timed out 2024/12/16 09:05:51 [error] gogram [mtproto] {pbot} - creating connection: creating transport: setup connection: dialing tcp: dial tcp 91.108.56.104:443: connect: connection timed out 2024/12/16 09:05:51 [error] gogram [mtproto] {pbot} - reconnecting: recreating connection: creating transport: setup connection: dialing tcp: dial tcp 91.108.56.104:443: connect: connection timed out
AmarnathCJD
No branches or pull requests
The text was updated successfully, but these errors were encountered: