ensure that messages are received through ack

master
Alex 2022-01-30 20:43:39 +01:00
parent b2a3601ce2
commit df8c94a795
1 changed files with 2 additions and 2 deletions

View File

@ -30,12 +30,12 @@ func AckHandler() {
for _ = range ticker.C {
for uuid, webClient := range cache.WebClients {
logger.Web.Println("ackHandler web client", uuid, webClient)
logger.Web.Println("ackHandler web client", uuid, webClient.SendVoiceQueueMessages, webClient.SendMobileQueueMessages)
}
for serverName, mcClient := range cache.MinecraftClients {
logger.Web.Println("ackHandler mc client", serverName, mcClient)
logger.Web.Println("ackHandler mc client", serverName, mcClient.SendQueueMessages)
}
}
}