diff --git a/bot.go b/bot.go index 63efeda..aaaf27b 100644 --- a/bot.go +++ b/bot.go @@ -297,7 +297,7 @@ func botGetClients(m *tb.Message) { if clt, ok := getLockedClient(m.Chat.ID, false); ok { clt.Mux.Unlock() muxClients.RLock() - ret = fmt.Sprintf("Version %s (%s)", githash, buildstamp) + ret := fmt.Sprintf("Version %s (%s)", githash, buildstamp) for id, c := range clients { if c.Active { ret = fmt.Sprintf("%s%s | UserID : %d | TelegramID : %d (online)\n", ret, c.Login, c.CWUserID64, id)