Server: correctly sort tags by name asc

This commit is contained in:
Chocobozzz 2016-12-26 17:44:25 +01:00
parent 124648d7fc
commit 178edb2025
1 changed files with 2 additions and 2 deletions

View File

@ -320,7 +320,7 @@ function listForApi (start, count, sort, callback) {
offset: start,
limit: count,
distinct: true, // For the count, a video can have many tags
order: [ modelUtils.getSort(sort) ],
order: [ modelUtils.getSort(sort), [ this.sequelize.models.Tag, 'name', 'ASC' ] ],
include: [
{
model: this.sequelize.models.Author,
@ -440,7 +440,7 @@ function searchAndPopulateAuthorAndPodAndTags (value, field, start, count, sort,
offset: start,
limit: count,
distinct: true, // For the count, a video can have many tags
order: [ modelUtils.getSort(sort) ]
order: [ modelUtils.getSort(sort), [ this.sequelize.models.Tag, 'name', 'ASC' ] ]
}
// Make an exact search with the magnet