Code quality: errors silently discarded in 4 locations #37
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Locations
internal/dvd/vob/sri.go:70�io.ReadFullerror discarded silently; corrupted SPU data may go undetectedinternal/player/gstreamer_player.go:269� seek error explicitly discarded with no log entryinternal/queue/edit.go:139-144, 192-197� JSON marshal errors silently ignored; config changes may be lostinternal/convert/dvd.go:155-163�fmt.Sscanfparse error ignored; bad timecode may cause wrong chapter placementFix
Replace discards with
logging.Debug(logging.CatXxx, ...)calls at minimum. Errors that affect output quality (sri.go, dvd.go) should propagate to the caller.