1
0
mirror of https://github.com/strawberrymusicplayer/strawberry synced 2025-01-21 13:16:22 +01:00

CueParser: Fix parsing tracks with 1-digit minutes

Fixes #836
This commit is contained in:
Jonas Kvinge 2021-11-27 18:15:03 +01:00
parent 059e2d740f
commit 4cb8261d3b

View File

@ -41,7 +41,7 @@
class CollectionBackendInterface;
const char *CueParser::kFileLineRegExp = "(\\S+)\\s+(?:\"([^\"]+)\"|(\\S+))\\s*(?:\"([^\"]+)\"|(\\S+))?";
const char *CueParser::kIndexRegExp = "(\\d{2,3}):(\\d{2}):(\\d{2})";
const char *CueParser::kIndexRegExp = "(\\d{1,3}):(\\d{2}):(\\d{2})";
const char *CueParser::kPerformer = "performer";
const char *CueParser::kTitle = "title";