This commit is contained in:
2026-03-02 17:57:13 +03:00
parent 3e0d3db47e
commit bca84ad269
6 changed files with 10 additions and 7 deletions

View File

@@ -46,7 +46,7 @@ func GetConsoleLogs(db *database.Context) ([]ConsoleLogEntry, error) {
type MessageLogEntry struct {
MessageID int `bson:"messageId" json:"message_id"`
SenderID int `bson:"senderId" json:"sender_id"`
ChatID int `bson:"chatId" json:"chat_id"`
ChatID int64 `bson:"chatId" json:"chat_id"`
Text string `bson:"text" json:"text"`
TimeStamp int64 `bson:"timestamp" json:"timestamp"`
}