Skip to content
Snippets Groups Projects
Verified Commit f42383db authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Fix #424: Hide unplayable/emtpy playlists in "Browse playlist" pages

parent f7986a23
No related branches found
No related tags found
No related merge requests found
Hide unplayable/emtpy playlists in "Browse playlist" pages (#424)
...@@ -130,7 +130,8 @@ export default { ...@@ -130,7 +130,8 @@ export default {
page: this.page, page: this.page,
page_size: this.paginateBy, page_size: this.paginateBy,
q: this.query, q: this.query,
ordering: this.getOrderingAsString() ordering: this.getOrderingAsString(),
playable: true
} }
axios.get(url, { params: params }).then(response => { axios.get(url, { params: params }).then(response => {
self.result = response.data self.result = response.data
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment