fix(cuesheet): Simplify CATALOG validation

This commit is contained in:
PSyton 2026-01-14 09:34:02 +07:00
parent 02a2020116
commit dbafe32135

View File

@ -84,7 +84,7 @@ var (
)
var (
catalogRegex = regexp.MustCompile(`^0\d{12}$`)
catalogRegex = regexp.MustCompile(`^\d{13}$`)
isrcRegex = regexp.MustCompile(`^[\da-zA-Z]{12}$`)
cueRegex = regexp.MustCompile(`^\S+( )+\S+.+`)
)