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

@ -19,7 +19,7 @@ interface ReplyMessageExtractor {
@ContributesBinding(AppScope::class)
@Inject
class AndroidReplyMessageExtractor() : ReplyMessageExtractor {
class AndroidReplyMessageExtractor : ReplyMessageExtractor {
override fun getReplyMessage(intent: Intent): String? {
return RemoteInput.getResultsFromIntent(intent)
?.getCharSequence(NotificationBroadcastReceiver.KEY_TEXT_REPLY)

View file

@ -15,7 +15,7 @@ import kotlinx.coroutines.flow.SharedFlow
@SingleIn(AppScope::class)
@Inject
class DiagnosticPushHandler() {
class DiagnosticPushHandler {
private val _state = MutableSharedFlow<Unit>()
val state: SharedFlow<Unit> = _state

View file

@ -15,7 +15,7 @@ import kotlinx.coroutines.flow.SharedFlow
@SingleIn(AppScope::class)
@Inject
class NotificationClickHandler() {
class NotificationClickHandler {
private val _state = MutableSharedFlow<Unit>(extraBufferCapacity = 1)
val state: SharedFlow<Unit> = _state