Merge pull request #4724 from nonamethanks/underused-cosplay

Don't mark cosplay/style tags as low post count
This commit is contained in:
evazion
2021-02-16 18:13:57 -06:00
committed by GitHub

View File

@@ -36,7 +36,7 @@ class TagListComponent < ApplicationComponent
end
def is_underused_tag?(tag)
tag.post_count <= 1 && tag.general?
tag.post_count <= 1 && tag.general? && tag.name !~ /_\((cosplay|style)\)\z/
end
def humanized_post_count(tag)