1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-16 19:31:02 +01:00

Fix a cue parser bug where songs starting after 99 minutes wouldn't be loaded. Fixes issue 1658

This commit is contained in:
David Sansome 2012-08-26 13:56:11 +01:00
parent 682acad53f
commit acbf21be07

View File

@ -29,7 +29,7 @@
#include <QtDebug>
const char* CueParser::kFileLineRegExp = "(\\S+)\\s+(?:\"([^\"]+)\"|(\\S+))\\s*(?:\"([^\"]+)\"|(\\S+))?";
const char* CueParser::kIndexRegExp = "(\\d{2}):(\\d{2}):(\\d{2})";
const char* CueParser::kIndexRegExp = "(\\d{2,3}):(\\d{2}):(\\d{2})";
const char* CueParser::kPerformer = "performer";
const char* CueParser::kTitle = "title";