mirror of
https://github.com/NiciDieNase/chaosflix
synced 2024-11-26 06:00:25 +00:00
Merge branch 'develop' into feature/singleApp
This commit is contained in:
commit
ddb2ef28de
2 changed files with 4 additions and 4 deletions
|
@ -11,8 +11,8 @@ import de.nicidienase.chaosflix.touch.browse.streaming.StreamingItem
|
|||
import kotlinx.coroutines.CoroutineScope
|
||||
|
||||
abstract class CastService(
|
||||
private val playbackProgressDao: PlaybackProgressDao,
|
||||
private val scope: CoroutineScope
|
||||
val playbackProgressDao: PlaybackProgressDao,
|
||||
val scope: CoroutineScope
|
||||
) {
|
||||
abstract val connected: Boolean
|
||||
|
||||
|
|
|
@ -25,8 +25,8 @@ import pl.droidsonroids.casty.Casty
|
|||
import pl.droidsonroids.casty.MediaData
|
||||
|
||||
class CastServiceImpl(
|
||||
private val playbackProgressDao: PlaybackProgressDao,
|
||||
private val scope: CoroutineScope
|
||||
playbackProgressDao: PlaybackProgressDao,
|
||||
scope: CoroutineScope
|
||||
) : LifecycleObserver, CastService(playbackProgressDao, scope) {
|
||||
|
||||
private var currentEvent: Event? = null
|
||||
|
|
Loading…
Reference in a new issue