Compare commits

..

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian c214ccf201 0.42.7 2026-01-09 03:50:02 +01:00
DebaucheryLibrarian 414499636e Ignoring actor photos with unknown entropy. 2026-01-09 03:50:00 +01:00
3 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View File

@ -1,11 +1,11 @@
{
"name": "traxxx-web",
"version": "0.42.6",
"version": "0.42.7",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "0.42.6",
"version": "0.42.7",
"dependencies": {
"@brillout/json-serializer": "^0.5.8",
"@dicebear/collection": "^7.0.5",

View File

@ -87,7 +87,7 @@
"overrides": {
"vite": "$vite"
},
"version": "0.42.6",
"version": "0.42.7",
"imports": {
"#/*": "./*.js"
}

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>