Add a comment

This commit is contained in:
tzugen 2021-11-16 12:33:50 +01:00 committed by tzugen
parent d6f908b80c
commit 00781ba7de
No known key found for this signature in database
GPG Key ID: 61E9C34BC10EC930
1 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,8 @@ class Downloader(
private val downloadQueue = PriorityQueue<DownloadFile>()
private val activelyDownloading = mutableListOf<DownloadFile>()
// TODO: The playlist is now published with RX, while the observableDownloads is using LiveData.
// Use the same for both
val observableDownloads = MutableLiveData<List<DownloadFile>>()
private val jukeboxMediaPlayer: JukeboxMediaPlayer by inject()