safeguard for save after store closed

This commit is contained in:
Valere 2020-10-23 17:49:42 +02:00
parent 9bf5059631
commit 9e921d8b50
1 changed files with 4 additions and 1 deletions

View File

@ -19,6 +19,7 @@ package org.matrix.android.sdk.internal.crypto
import android.util.LruCache
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.launch
import org.matrix.android.sdk.api.extensions.tryOrNull
import org.matrix.android.sdk.internal.crypto.model.OlmInboundGroupSessionWrapper2
import org.matrix.android.sdk.internal.crypto.store.IMXCryptoStore
import org.matrix.android.sdk.internal.util.MatrixCoroutineDispatchers
@ -90,7 +91,9 @@ internal class InboundGroupSessionStore @Inject constructor(
dirtySession.clear()
cryptoCoroutineScope.launch(coroutineDispatchers.crypto) {
Timber.v("## Inbound: getInboundGroupSession batching save of ${dirtySession.size}")
store.storeInboundGroupSessions(toSave)
tryOrNull {
store.storeInboundGroupSessions(toSave)
}
}
}
}