Fixed Score scraper breaking if gallery image can't be found, though actual issue was in unprint library.

This commit is contained in:
DebaucheryLibrarian
2026-02-04 17:50:24 +01:00
parent 8d1b2975da
commit 506db492bc
3 changed files with 7 additions and 7 deletions

View File

@@ -174,9 +174,9 @@ function scrapeScene({ query }, url) {
return Array.from(new Set([
...isJoin ? [] : [link],
img.replace('_tn', ''),
img?.replace('_tn', ''),
img,
]));
])).filter(Boolean);
});
if (poster) {