Removed font onum
This commit is contained in:
parent
9b1e078c20
commit
bed8a7a9ad
32 changed files with 341 additions and 369 deletions
|
@ -69,7 +69,7 @@ object MusicPlayerRemote {
|
|||
|
||||
val playingQueue: ArrayList<Song>
|
||||
get() = if (musicService != null) {
|
||||
musicService!!.playingQueue
|
||||
musicService?.playingQueue as ArrayList<Song>
|
||||
} else ArrayList()
|
||||
|
||||
val songProgressMillis: Int
|
||||
|
@ -153,11 +153,13 @@ object MusicPlayerRemote {
|
|||
}
|
||||
return null
|
||||
}
|
||||
|
||||
fun getQueueDurationSongs(): Int {
|
||||
return if (musicService != null) {
|
||||
musicService!!.playingQueue.size
|
||||
musicService!!.playingQueue!!.size
|
||||
} else -1
|
||||
}
|
||||
|
||||
/**
|
||||
* Async
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue