Fix website variant build (#1015)
parent
bbdfec3a47
commit
36590bea81
@ -1,9 +1,15 @@
|
|||||||
package org.thoughtcrime.securesms.notifications
|
package org.thoughtcrime.securesms.notifications
|
||||||
|
|
||||||
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
|
import kotlinx.coroutines.flow.StateFlow
|
||||||
|
import org.session.libsession.messaging.notifications.TokenFetcher
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
import javax.inject.Singleton
|
import javax.inject.Singleton
|
||||||
|
|
||||||
@Singleton
|
@Singleton
|
||||||
class NoOpTokenFetcher @Inject constructor() : TokenFetcher {
|
class NoOpTokenFetcher @Inject constructor() : TokenFetcher {
|
||||||
override suspend fun fetch(): String? = null
|
override val token: StateFlow<String?> = MutableStateFlow(null)
|
||||||
|
|
||||||
|
override fun onNewToken(token: String) {}
|
||||||
|
override suspend fun resetToken() {}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue