hdkv
/
i2_bot
Archived
1
Fork 0

Fix for latest update time in /find_user commands

master
Vladimir Hodakov 2018-02-17 15:55:28 +04:00
parent fef521e35b
commit bf7eec791a
1 changed files with 2 additions and 2 deletions

View File

@ -4,9 +4,9 @@
package users package users
import ( import (
"source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping"
"github.com/go-telegram-bot-api/telegram-bot-api" "github.com/go-telegram-bot-api/telegram-bot-api"
"sort" "sort"
"source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping"
"strconv" "strconv"
"strings" "strings"
"time" "time"
@ -94,7 +94,7 @@ func (u *Users) foundUsersMessage(update *tgbotapi.Update, users map[int]*dbmapp
} }
message += " /profile" + strconv.Itoa(users[i].Player.ID) + "\n" message += " /profile" + strconv.Itoa(users[i].Player.ID) + "\n"
message += "Telegram ID: " + strconv.Itoa(users[i].Player.TelegramID) + "\n" message += "Telegram ID: " + strconv.Itoa(users[i].Player.TelegramID) + "\n"
message += "Последнее обновление: " + users[i].Player.CreatedAt.Format("02.01.2006 15:04:05") + "\n" message += "Последнее обновление: " + users[i].Profile.CreatedAt.Format("02.01.2006 15:04:05") + "\n"
if len(message) > 2000 { if len(message) > 2000 {
msg := tgbotapi.NewMessage(update.Message.Chat.ID, message) msg := tgbotapi.NewMessage(update.Message.Chat.ID, message)