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:
parent
682acad53f
commit
acbf21be07
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user