Merge pull request #1018 from session-foundation/release/1.21.1
Bring 1.21.1 back to devpull/1710/head
commit
e95fa6cc03
@ -1,9 +1,15 @@
|
||||
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.Singleton
|
||||
|
||||
@Singleton
|
||||
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