Filter Woodman photos from actor page.

This commit is contained in:
DebaucheryLibrarian 2026-01-22 19:42:12 +01:00
parent 6281842a14
commit c026988a7b
1 changed files with 2 additions and 1 deletions

View File

@ -93,7 +93,8 @@ const { actor } = pageProps;
const domain = routeParams.domain; const domain = routeParams.domain;
const photos = actor.photos.filter((photo) => photo.entropy > 5.5); const badCredits = ['Pierre Woodman']; // consistently horrible photos
const photos = actor.photos.filter((photo) => photo.entropy > 5.5 && !badCredits.includes(photo.credit));
</script> </script>
<style scoped> <style scoped>