mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 14:49:23 +02:00
Fix #114: can now filter artists and albums with no listenable tracks
This commit is contained in:
parent
0f06c39854
commit
bfeb86865d
6 changed files with 84 additions and 4 deletions
|
@ -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) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue