Fixes after rebase
This commit is contained in:
+1
-1
@@ -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)
|
||||
|
||||
+1
-1
@@ -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
|
||||
|
||||
|
||||
+1
-1
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user