Fix #424: Hide unplayable/emtpy playlists in "Browse playlist" pages
This commit is contained in:
parent
f7986a2341
commit
f42383dbe7
|
@ -0,0 +1 @@
|
||||||
|
Hide unplayable/emtpy playlists in "Browse playlist" pages (#424)
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue