From 32cee65809ec81d21e8ee25086d529c1be4b6fa5 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Thu, 1 Feb 2024 15:59:53 +1100 Subject: Accept opus files that don't fully parse, remove opus-specific tag parser The libtags change is a bit of a hack... I think we're running into tracks that have long lyrics tags, which pushes the other tags out onto the next ogg page? --- lib/libtags/opus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/libtags/opus.c b/lib/libtags/opus.c index fa2c7d40..fcea57d8 100644 --- a/lib/libtags/opus.c +++ b/lib/libtags/opus.c @@ -63,7 +63,7 @@ tagopus(Tagctx *ctx) ctx->buf[sz] = 0; if((v = strchr(ctx->buf, '=')) == nil) - return -1; + continue; *v++ = 0; cbvorbiscomment(ctx, ctx->buf, v); } -- cgit v1.2.3