diff --git a/pkg/nest/api.go b/pkg/nest/api.go index 035f1546..5e0d3407 100644 --- a/pkg/nest/api.go +++ b/pkg/nest/api.go @@ -281,5 +281,8 @@ func (a *API) StartExtendStreamTimer() { } func (a *API) StopExtendStreamTimer() { + if a.extendTimer == nil { + return + } a.extendTimer.Stop() }