Fixes after rebase
This commit is contained in:
parent
ddf9e5055e
commit
e8328858ab
117 changed files with 310 additions and 295 deletions
|
|
@ -18,4 +18,4 @@ interface GuardServiceStarter {
|
|||
|
||||
@ContributesBinding(AppScope::class)
|
||||
@Inject
|
||||
class NoopGuardServiceStarter() : GuardServiceStarter
|
||||
class NoopGuardServiceStarter : GuardServiceStarter
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ import io.element.android.libraries.pushproviders.api.PushData
|
|||
import kotlinx.serialization.json.Json
|
||||
|
||||
@Inject
|
||||
class UnifiedPushParser() {
|
||||
class UnifiedPushParser {
|
||||
private val json by lazy { Json { ignoreUnknownKeys = true } }
|
||||
|
||||
fun parse(message: ByteArray, clientSecret: String): PushData? {
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ data class RegistrationResult(
|
|||
|
||||
@SingleIn(AppScope::class)
|
||||
@Inject
|
||||
class EndpointRegistrationHandler() {
|
||||
class EndpointRegistrationHandler {
|
||||
private val _state = MutableSharedFlow<RegistrationResult>()
|
||||
val state: SharedFlow<RegistrationResult> = _state
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue