mirror of
https://gitlab.com/ultrasonic/ultrasonic.git
synced 2025-04-15 08:50:35 +03:00
Fix play all in Track collection random view
This commit is contained in:
parent
21a27c691d
commit
c1013f6b80
@ -351,13 +351,11 @@ open class TrackCollectionFragment(
|
||||
|
||||
val isArtist = navArgs.isArtist
|
||||
|
||||
// Need a valid id to download stuff
|
||||
val id = navArgs.id ?: return
|
||||
|
||||
if (hasSubFolders) {
|
||||
// Need a valid id to recurse sub directories stuff
|
||||
if (hasSubFolders && navArgs.id != null) {
|
||||
downloadHandler.fetchTracksAndAddToController(
|
||||
fragment = this,
|
||||
id = id,
|
||||
id = navArgs.id!!,
|
||||
append = append,
|
||||
autoPlay = !append,
|
||||
shuffle = shuffle,
|
||||
|
Loading…
x
Reference in New Issue
Block a user