1
0
Fork 0
forked from Mirrors/gomuks

main: don't initialize event buffer before loading config

This commit is contained in:
Tulir Asokan 2024-12-07 01:33:42 +02:00
parent 149114354a
commit a37a35795c

View file

@ -68,8 +68,7 @@ type Gomuks struct {
func NewGomuks() *Gomuks { func NewGomuks() *Gomuks {
return &Gomuks{ return &Gomuks{
stopChan: make(chan struct{}), stopChan: make(chan struct{}),
EventBuffer: NewEventBuffer(512),
} }
} }