Remove offset and limit from count queries. Fixes #2443

This commit is contained in:
Deluan 2024-01-20 22:02:05 -05:00
parent 2fb913f5c9
commit 2b33ef72e3
2 changed files with 2 additions and 1 deletions

View file

@ -35,7 +35,7 @@ func (r *radioRepository) isPermitted() bool {
}
func (r *radioRepository) CountAll(options ...model.QueryOptions) (int64, error) {
sql := r.newSelect(options...)
sql := r.newSelect()
return r.count(sql, options...)
}