add shuffle-in-order support to all collections (#356)

This commit is contained in:
Jason Dove
2021-09-10 13:33:04 -05:00
committed by GitHub
parent fc360602ad
commit a076b3eb30
8 changed files with 177 additions and 34 deletions
@@ -613,6 +613,12 @@ namespace ErsatzTV.Core.Scheduling
result = await _mediaCollectionRepository.GetMultiCollectionCollections(
collectionKey.MultiCollectionId.Value);
}
else
{
result = await _mediaCollectionRepository.GetFakeMultiCollectionCollections(
collectionKey.CollectionId,
collectionKey.SmartCollectionId);
}
return result;
}