Fixes after rebase

This commit is contained in:
Jorge Martín 2025-09-01 17:11:38 +02:00
parent ddf9e5055e
commit e8328858ab
117 changed files with 310 additions and 295 deletions

View file

@ -18,4 +18,4 @@ interface GuardServiceStarter {
@ContributesBinding(AppScope::class)
@Inject
class NoopGuardServiceStarter() : GuardServiceStarter
class NoopGuardServiceStarter : GuardServiceStarter

View file

@ -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? {

View file

@ -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