Merge branch '114-exclude-empty-albums' into 'develop'

Fix #114: can now filter artists and albums with no listenable tracks

Closes #114

See merge request funkwhale/funkwhale!83
This commit is contained in:
Eliot Berriot 2018-03-07 22:19:21 +00:00
commit c70ab72bc0
6 changed files with 84 additions and 4 deletions

View file

@ -129,7 +129,8 @@ export default {
page: this.page,
page_size: this.paginateBy,
name__icontains: this.query,
ordering: this.getOrderingAsString()
ordering: this.getOrderingAsString(),
listenable: 'true'
}
logger.default.debug('Fetching artists')
axios.get(url, {params: params}).then((response) => {