Skip to content

Commit

Permalink
chore: fix rebase issues
Browse files Browse the repository at this point in the history
  • Loading branch information
typfel committed Sep 19, 2023
1 parent 2771b3b commit 673f86d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ internal class MLSMessageUnpackerImpl(
)
mlsConversationRepository.decryptMessage(messageEvent.content.decodeBase64Bytes(), protocolInfo.groupId)
} else {
Either.Right(emptyList())
Either.Left(CoreFailure.NotSupportedByProteus)
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,9 @@ internal object TestStubs {
accessRole = listOf(ConversationEntity.AccessRole.NON_TEAM_MEMBER, ConversationEntity.AccessRole.TEAM_MEMBER),
receiptMode = ConversationEntity.ReceiptMode.DISABLED,
messageTimer = messageTimer,
userMessageTimer = null
userMessageTimer = null,
archived = false,
archivedInstant = null
)

val member1 = MemberEntity(user1.id, MemberEntity.Role.Admin)
Expand Down

0 comments on commit 673f86d

Please sign in to comment.