Shuffle items with images

They were always returning in the same order so thumb would never change.
This commit is contained in:
SenorSmartyPants 2022-01-19 19:16:36 -06:00
parent b15ab397c7
commit 5d9e1bfcea

View file

@ -84,16 +84,20 @@ namespace Emby.Server.Implementations.Images
}).GroupBy(x => x.Id)
.Select(x => x.First());
List<BaseItem> returnItems;
if (isUsingCollectionStrip)
{
return items
returnItems = items
.Where(i => i.HasImage(ImageType.Primary) || i.HasImage(ImageType.Thumb))
.ToList();
returnItems.Shuffle();
return returnItems;
}
return items
returnItems = items
.Where(i => i.HasImage(ImageType.Primary))
.ToList();
returnItems.Shuffle();
return returnItems;
}
protected override bool Supports(BaseItem item)