debug
This commit is contained in:
parent
bac80e723f
commit
f1e4d93ff2
9
td.go
9
td.go
@ -81,7 +81,14 @@ func getHistory(c *tdlib.Client, chatID64 *int64, senderUserID64 *int64) {
|
|||||||
chat = *chatID64
|
chat = *chatID64
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Printf("Exporting historic messages for chat %d from user %d ...\n", chat, *senderUserID64)
|
if historySenderUserID64 != 0 {
|
||||||
|
userDetails, err := c.GetUser(senderUserID)
|
||||||
|
chatDetails, err := c.GetChat(chat)
|
||||||
|
fmt.Printf("Exporting historic messages for chat %d (%s) from user %d (%s)...\n", chat, chatDetails.Title, *senderUserID64, userDetails.Username)
|
||||||
|
} else {
|
||||||
|
chatDetails, err := c.GetChat(chat)
|
||||||
|
fmt.Printf("Exporting historic messages for chat %d (%s) ...\n", chat, chatDetails.Title)
|
||||||
|
}
|
||||||
|
|
||||||
for lastParsedID64 >= 0 {
|
for lastParsedID64 >= 0 {
|
||||||
msgs, err := c.GetChatHistory(chat, lastParsedID64, 0, 99, false)
|
msgs, err := c.GetChatHistory(chat, lastParsedID64, 0, 99, false)
|
||||||
|
Loading…
Reference in New Issue
Block a user