From 2f0ef363eabce940314dc33f5966335642722fa2 Mon Sep 17 00:00:00 2001 From: Keuin Date: Sat, 29 Jul 2023 21:23:33 +0800 Subject: Distinguish waiting and recording status --- recording/runner.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recording/runner.go') 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 -- cgit v1.2.3