Fixes after rebase
This commit is contained in:
parent
ddf9e5055e
commit
e8328858ab
117 changed files with 310 additions and 295 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue