mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Revert "Replace COUNT(DISTINCT primary_key)
with COUNT(*)
"
Genres are required as part of the count queries, so filter by genres work
This commit is contained in:
parent
8c8e1ea701
commit
28dc98dec4
4 changed files with 5 additions and 1 deletions
|
@ -76,6 +76,7 @@ func artistFilter(field string, value interface{}) Sqlizer {
|
|||
|
||||
func (r *albumRepository) CountAll(options ...model.QueryOptions) (int64, error) {
|
||||
sql := r.newSelectWithAnnotation("album.id")
|
||||
sql = r.withGenres(sql) // Required for filtering by genre
|
||||
return r.count(sql, options...)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue