ktlint fixes

This commit is contained in:
ariskotsomitopoulos 2022-01-17 13:30:59 +02:00
parent 879c4ffef6
commit 52348e399e
1 changed files with 2 additions and 2 deletions

View File

@ -517,9 +517,9 @@ internal class RoomSyncHandler @Inject constructor(private val readReceiptHandle
*/
private fun deleteLocalEchosIfNeeded(insertType: EventInsertType, roomEntity: RoomEntity, eventList: List<Event>) {
// Skip deletion if we are on initial sync
if(insertType == EventInsertType.INITIAL_SYNC) return
if (insertType == EventInsertType.INITIAL_SYNC) return
// Skip deletion if there are no timeline events or there is no event received from the current user
if(eventList.firstOrNull { it.senderId == userId } == null) return
if (eventList.firstOrNull { it.senderId == userId } == null) return
roomEntity.sendingTimelineEvents.filter { timelineEvent ->
timelineEvent.root?.sendState == SendState.SENT
}.forEach {