Fix a minor warning

This commit is contained in:
tzugen 2021-10-23 16:49:56 +02:00
parent 939cd8583c
commit c44257f569
No known key found for this signature in database
GPG Key ID: 61E9C34BC10EC930
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class PlaybackStateSerializer : KoinComponent {
private val mediaSessionHandler by inject<MediaSessionHandler>()
val lock: Lock = ReentrantLock()
val setup = AtomicBoolean(false)
private val setup = AtomicBoolean(false)
private val appScope = CoroutineScope(SupervisorJob() + Dispatchers.IO)