- Better handling of CUE tracks when MPD is set to list as directory.

- Disable CUE parsing in cantata by default, as MPD handles this better now.

Issues #1650 and #1652
This commit is contained in:
Craig Drummond
2020-11-17 12:06:04 +00:00
parent 4d9bb761e6
commit 82a6798c83
5 changed files with 26 additions and 1 deletions

View File

@@ -324,7 +324,7 @@ QSet<QString> Settings::singleTracksFolders()
MPDParseUtils::CueSupport Settings::cueSupport()
{
return MPDParseUtils::toCueSupport(cfg.get("cueSupport", MPDParseUtils::toStr(MPDParseUtils::Cue_Parse)));
return MPDParseUtils::toCueSupport(cfg.get("cueSupport", MPDParseUtils::toStr(MPDParseUtils::Cue_Ignore)));
}
QStringList Settings::lyricProviders()