evazion/translate-pixiv-tags

SauceNAO brings up deleted artists

Closed this issue · 0 comments

I noticed this when doing a SauceNAO search.

WARNING: NSFW! http://saucenao.com/search.php?db=999&url=https%3A%2F%2Fpbs.twimg.com%2Fmedia%2FC2q3lxtVQAEKkLN.png
image

It's because the get function for artists is not passing in the is_active parameter.

get("/artists", {search: {name: e.text().replace(/ /g, "_")}, only: ARTIST_FIELDS})

The following is what it should be.

get("/artists", {search: {name: e.text().replace(/ /g, "_"), is_active: true}, only: ARTIST_FIELDS})