mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-22 01:15:54 +03:00
Fix line length
This commit is contained in:
parent
781b9954d1
commit
9c3cacc2da
1 changed files with 7 additions and 1 deletions
|
@ -105,7 +105,13 @@ internal class EventSenderProcessorCoroutine @Inject constructor(
|
|||
return postRedaction(redactionLocalEcho.eventId!!, redactionLocalEcho.redacts!!, redactionLocalEcho.roomId!!, reason, withRelations)
|
||||
}
|
||||
|
||||
override fun postRedaction(redactionLocalEchoId: String, eventToRedactId: String, roomId: String, reason: String?, withRelations: List<String>?): Cancelable {
|
||||
override fun postRedaction(
|
||||
redactionLocalEchoId: String,
|
||||
eventToRedactId: String,
|
||||
roomId: String,
|
||||
reason: String?,
|
||||
withRelations: List<String>?
|
||||
): Cancelable {
|
||||
val task = queuedTaskFactory.createRedactTask(redactionLocalEchoId, eventToRedactId, roomId, reason, withRelations)
|
||||
return postTask(task)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue