Removed font onum

This commit is contained in:
h4h13 2019-12-30 10:23:51 +05:30
parent 9b1e078c20
commit bed8a7a9ad
32 changed files with 341 additions and 369 deletions

View file

@ -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
*/