diff options
Diffstat (limited to 'recording/runner.go')
-rw-r--r-- | recording/runner.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recording/runner.go b/recording/runner.go index 7bf3790..ca4fe48 100644 --- a/recording/runner.go +++ b/recording/runner.go @@ -42,7 +42,7 @@ var errLiveEnded = errs.NewError(errs.LiveEnded) // During the process, its status may change. // Note: this method is blocking. func (t *RunningTask) runTaskWithAutoRestart() { - t.status = StRunning + t.status = StWaiting loop: for { err := tryRunTask(t) @@ -171,6 +171,7 @@ func tryRunTask(t *RunningTask) error { case nil: // live is started, start recording // (now the watcher should have stopped) + t.status = StRecording return func() error { var err error run := true |