1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-12 17:10:54 +00:00

Speed up subscription janitor to 1min

This commit is contained in:
Kane York 2015-11-09 14:44:33 -08:00
parent 29eb07f58c
commit 377afb7a6b
3 changed files with 13 additions and 8 deletions

View file

@ -52,7 +52,7 @@ func commandLineConsole() {
if target == "_ALL" {
count = server.PublishToAll(msg)
} else {
count = server.PublishToChat(target, msg)
count = server.PublishToChannel(target, msg)
}
return fmt.Sprintf("Published to %d clients", count), nil
})