Skip to content

Commit

Permalink
Don't use null error
Browse files Browse the repository at this point in the history
  • Loading branch information
thomshutt committed Aug 1, 2023
1 parent 6ea1992 commit beb8739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/testers/m3utester2.go
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ func (mut *m3utester2) manifestPullerLoop(waitForTarget time.Duration) {
continue
}
if strings.Contains(string(b), "#EXT-X-ERROR") {
errs = append(errs, err.Error())
errs = append(errs, fmt.Sprintf("error in playlist: %s", string(b)))
glog.Error("===== error in playlist: ", string(b))
time.Sleep(2 * time.Second)
continue
Expand Down

0 comments on commit beb8739

Please sign in to comment.