Gelbooru

Notice: We are now selling NEW Gelbooru Merch~! Domestic shipping is free on all orders! Do you have an artist tag on Gelbooru? Let us know so we can properly credit you!

Ticket Information - ID: #315


ID:Category:SeverityReproducibilityDate SubmittedUpdated By:
0000315Feature RequestLowN/A12/06/09 02:57AMmcgiwer
Reportercanadasman
Assigned to:geltas
Resolution:Resolved
View StatusPublic
Version:0.2.0
Target Version:0.2.0
Summary:Skip posts containing tags on your blacklist
Description:Having 3 to look through 3 pages of blacklisted images is pretty annoying. Requesting a feature that would skip all the posts with tags contained in your blacklist so that only images that are acceptable would show up.
Additional Info:
lozertuser replied at 2009-12-06 15:56:34
Does so only when you search a tag for performance reasons. Otherwise we would have massive CPU load that would not be maintainable.

mcgiwer replied at 2015-08-03 12:44:37
@lozertuser:

I think that there is a simple way to make it don't show without big CPU usage. Youi would need do a small change in the site code and add:

(example pseudocode)

if(!$blacklisted)
{
$img.show=true;
}
else
{
$img.show=false;
}