Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MBS-11808: Don't show tags in lists where vote count < 1 #2188

Merged
merged 1 commit into from Aug 2, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/MusicBrainz/Server/Data/EntityTag.pm
Expand Up @@ -464,6 +464,7 @@ sub find_entities
FROM " . $self->parent->_table . "
JOIN $tag_table tt ON " . $self->parent->_id_column . " = tt.$type
WHERE tag = ?
AND tt.count > 0
ORDER BY tt.count DESC, $ordering_condition, " . $self->parent->_id_column;
$self->query_to_list_limited($query, [$tag_id], $limit, $offset, sub {
my ($model, $row) = @_;
Expand Down