misc. db.GetPlayers() result is now truncated

This commit is contained in:
2023-03-11 03:28:11 -06:00
parent c62ed5d101
commit cbe308a0bd
3 changed files with 21 additions and 13 deletions

View File

@@ -5,7 +5,7 @@ import (
"sync"
)
var allocator = sync.Pool{
var allocator = &sync.Pool{
New: func() any { return new(bytes.Buffer) },
}