Ignoring actor photos with unknown entropy.

This commit is contained in:
DebaucheryLibrarian 2026-01-09 03:50:00 +01:00
parent d9bbd95fa1
commit 414499636e
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ const { actor } = pageProps;
const domain = routeParams.domain;
const photos = actor.photos.filter((photo) => !photo.entropy || photo.entropy > 5.5);
const photos = actor.photos.filter((photo) => photo.entropy > 5.5);
</script>
<style scoped>