@ -13,7 +13,7 @@ type CallTicker struct {
func NewCallTicker(d time.Duration, function func()) *CallTicker {
ticker := &CallTicker{
manualTrigger: make(chan interface{}),
manualTrigger: make(chan interface{}, 100),
function: function,
ticker: time.NewTicker(d),
duration: d,
The note is not visible to the blocked user.