Added an option to skip playlists that are refering to a single album + skip playlists that are empty, fixes #577

This commit is contained in:
emeric
2025-01-15 21:14:18 +01:00
parent 4a75e5220e
commit 1d15be1e6c
15 changed files with 154 additions and 35 deletions
+9
View File
@@ -94,6 +94,15 @@ namespace lms::db
}
}
void ScanSettings::setSkipSingleReleasePlayLists(bool value)
{
if (_skipSingleReleasePlayLists != value)
{
_skipSingleReleasePlayLists = value;
incScanVersion();
}
}
void ScanSettings::incScanVersion()
{
_scanVersion += 1;