From 3c6cb589820638b680cc4dbb47de92b3c34ca2bf Mon Sep 17 00:00:00 2001 From: qydysky Date: Sun, 7 Jan 2024 02:16:22 +0800 Subject: [PATCH] Fix --- Reply/stream.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Reply/stream.go b/Reply/stream.go index bdbcebd..7436a68 100644 --- a/Reply/stream.go +++ b/Reply/stream.go @@ -1321,7 +1321,9 @@ func (t *M4SStream) Start() bool { { fj := file.New(cp+"0.json", 0, true) if fj.IsExist() { - fj.Delete() + if err := fj.Delete(); err != nil { + l.L(`E: `, err) + } } var pathInfo paf pathInfo.Uname = ms.common.Uname -- 2.39.2