code review

This commit is contained in:
Valere 2020-03-18 11:25:49 +01:00
parent 286a5081ff
commit 6fe77eba72
2 changed files with 12 additions and 12 deletions

View file

@ -90,7 +90,7 @@ class KeyShareTests : InstrumentedTest {
mTestHelper.retryPeriodicallyWithLatch(waitLatch) {
aliceSession2.cryptoService().getOutgoingRoomKeyRequest()
.filter { req ->
// filter out request thwat was known before
// filter out request that was known before
!outgoingRequestBefore.any { req.requestId == it.requestId }
}
.let {

View file

@ -455,7 +455,7 @@ internal class DefaultVerificationService @Inject constructor(
startReq: ValidVerificationInfoStart,
txConfigure: (DefaultVerificationTransaction) -> Unit): CancelCode? {
Timber.d("## SAS onStartRequestReceived ${startReq.transactionId}")
if (checkKeysAreDownloaded(otherUserId!!, startReq.fromDevice) != null) {
if (otherUserId?.let { checkKeysAreDownloaded(it, startReq.fromDevice) } != null) {
val tid = startReq.transactionId
var existing = getExistingTransaction(otherUserId, tid)