client revamping compilation fix

This commit is contained in:
shoopea 2019-07-31 14:44:58 +08:00
parent 6d58995d62
commit 76ac5fabaa
2 changed files with 3 additions and 3 deletions

4
bot.go
View File

@ -172,9 +172,9 @@ func botGetClients(m *tb.Message) {
var ret string var ret string
for id, c := range clients { for id, c := range clients {
if c.Active { if c.Active {
ret = fmt.Sprintf("%s%s | UserID : %d | TelegramID : %d (online)\n", ret, c.MQ.User, c.CWUserID64, c.TGUserID64) ret = fmt.Sprintf("%s%s | UserID : %d | TelegramID : %d (online)\n", ret, c.MQ.User, c.CWUserID64, id)
} else { } else {
ret = fmt.Sprintf("%s%s | UserID : %d | TelegramID : %d (offline)\n", ret, c.MQ.User, c.CWUserID64, c.TGUserID64) ret = fmt.Sprintf("%s%s | UserID : %d | TelegramID : %d (offline)\n", ret, c.MQ.User, c.CWUserID64, id)
} }
} }
muxClients.RUnlock() muxClients.RUnlock()

View File

@ -580,7 +580,7 @@ func MQTidyKeepAliveWorker() {
logOnError(err, "MQTidyKeepAliveWorker : Connection.Close()") logOnError(err, "MQTidyKeepAliveWorker : Connection.Close()")
cmd := TGCommand{ cmd := TGCommand{
Type: commandSendMsg, Type: commandSendMsg,
ToUserID64: clt.TGUserID64, ToUserID64: id,
Text: "Timeout, purging and closing command queue.", Text: "Timeout, purging and closing command queue.",
} }
TGCmdQueue <- cmd TGCmdQueue <- cmd