diff options
author | Christian Pointner <equinox@spreadspace.org> | 2019-02-10 00:14:27 +0100 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2019-02-10 00:14:27 +0100 |
commit | 450f9f29675bffaf52e7cc39215d1d14982cf783 (patch) | |
tree | 49cfe64668910ef91e8ad023a9454c454fc58767 /cmd/dolmetschctld | |
parent | mixer event subscription works now (diff) |
make sure we don't miss events from mixer
Diffstat (limited to 'cmd/dolmetschctld')
-rw-r--r-- | cmd/dolmetschctld/statemachine.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dolmetschctld/statemachine.go b/cmd/dolmetschctld/statemachine.go index c5e5707..d92965a 100644 --- a/cmd/dolmetschctld/statemachine.go +++ b/cmd/dolmetschctld/statemachine.go @@ -136,7 +136,7 @@ func NewStateMachine(m *mixer.Mixer) (*StateMachine, error) { sm.selectLangCh = make(chan selectLangRequest, 10) sm.quitCh = make(chan bool, 1) sm.exitedCh = make(chan struct{}) - sm.mixerEventCh = make(chan mixer.Event, 3) + sm.mixerEventCh = make(chan mixer.Event, 1000) sm.languages = make(map[Language]LanguageChannels) sm.channel2lang = make(map[mixer.Channel]Language) |