Replace empty quotes with empty strings for values in CUE parser
This commit is contained in:
parent
380aa7d884
commit
e8ca64f16b
@ -275,7 +275,7 @@ QStringList CueParser::SplitCueLine(const QString &line) const {
|
||||
}
|
||||
|
||||
// Let's remove the empty entries while we're at it
|
||||
return re_match.capturedTexts().filter(QRegularExpression(".+")).mid(1, -1);
|
||||
return re_match.capturedTexts().filter(QRegularExpression(".+")).mid(1, -1).replaceInStrings("\"\"", "");
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user