Added actor photos to Brazzers scene scrape. Added no-video poster to Score. Not flattening actor avatar fallbacks.

This commit is contained in:
2020-03-04 17:21:40 +01:00
parent 6733777f63
commit 6c3cba1b87
5 changed files with 31 additions and 15 deletions

View File

@@ -308,7 +308,7 @@ function accumulateActors(releases) {
if (actor.name) acc[actorSlug] = { ...acc[actorSlug], ...actor }; // actor input contains profile info
if (actor.avatar) {
acc[actorSlug].avatars = acc[actorSlug].avatars.concat(actor.avatar);
acc[actorSlug].avatars = acc[actorSlug].avatars.concat([actor.avatar]); // don't flatten fallbacks
}
});