Only scraping profile source matching actor entity, changed avatar entropy cut-off from 6 to 5.5.

This commit is contained in:
DebaucheryLibrarian
2021-03-11 04:16:59 +01:00
parent 7f53f585c0
commit 00c06778ef
3 changed files with 13 additions and 7 deletions

View File

@@ -45,7 +45,7 @@
<script>
function photos() {
return this.actor.photos.filter(photo => !photo.entropy || photo.entropy > 6);
return this.actor.photos.filter(photo => !photo.entropy || photo.entropy > 5.5);
}
function sfw() {