Merge pull request #1605 from vector-im/feature/fix_db_migration_serialization
Feature/fix db migration serialization
This commit is contained in:
commit
e878821df2
|
@ -64,3 +64,19 @@
|
||||||
|
|
||||||
### Webrtc
|
### Webrtc
|
||||||
-keep class org.webrtc.** { *; }
|
-keep class org.webrtc.** { *; }
|
||||||
|
|
||||||
|
### Serializable persisted classes
|
||||||
|
# https://www.guardsquare.com/en/products/proguard/manual/examples#serializable
|
||||||
|
-keepnames class * implements java.io.Serializable
|
||||||
|
|
||||||
|
-keepclassmembers class * implements java.io.Serializable {
|
||||||
|
static final long serialVersionUID;
|
||||||
|
private static final java.io.ObjectStreamField[] serialPersistentFields;
|
||||||
|
!static !transient <fields>;
|
||||||
|
!private <fields>;
|
||||||
|
!private <methods>;
|
||||||
|
private void writeObject(java.io.ObjectOutputStream);
|
||||||
|
private void readObject(java.io.ObjectInputStream);
|
||||||
|
java.lang.Object writeReplace();
|
||||||
|
java.lang.Object readResolve();
|
||||||
|
}
|
|
@ -182,7 +182,8 @@ internal class RealmCryptoStoreMigration @Inject constructor(private val crossSi
|
||||||
try {
|
try {
|
||||||
val oldSerializedData = obj.getString("olmInboundGroupSessionData")
|
val oldSerializedData = obj.getString("olmInboundGroupSessionData")
|
||||||
deserializeFromRealm<MXOlmInboundGroupSession2>(oldSerializedData)?.let { mxOlmInboundGroupSession2 ->
|
deserializeFromRealm<MXOlmInboundGroupSession2>(oldSerializedData)?.let { mxOlmInboundGroupSession2 ->
|
||||||
val newOlmInboundGroupSessionWrapper2 = OlmInboundGroupSessionWrapper2()
|
val sessionKey = mxOlmInboundGroupSession2.mSession.sessionIdentifier()
|
||||||
|
val newOlmInboundGroupSessionWrapper = OlmInboundGroupSessionWrapper(sessionKey, false)
|
||||||
.apply {
|
.apply {
|
||||||
olmInboundGroupSession = mxOlmInboundGroupSession2.mSession
|
olmInboundGroupSession = mxOlmInboundGroupSession2.mSession
|
||||||
roomId = mxOlmInboundGroupSession2.mRoomId
|
roomId = mxOlmInboundGroupSession2.mRoomId
|
||||||
|
@ -191,7 +192,7 @@ internal class RealmCryptoStoreMigration @Inject constructor(private val crossSi
|
||||||
forwardingCurve25519KeyChain = mxOlmInboundGroupSession2.mForwardingCurve25519KeyChain
|
forwardingCurve25519KeyChain = mxOlmInboundGroupSession2.mForwardingCurve25519KeyChain
|
||||||
}
|
}
|
||||||
|
|
||||||
obj.setString("olmInboundGroupSessionData", serializeForRealm(newOlmInboundGroupSessionWrapper2))
|
obj.setString("olmInboundGroupSessionData", serializeForRealm(newOlmInboundGroupSessionWrapper))
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Timber.e(e, "Error")
|
Timber.e(e, "Error")
|
||||||
|
|
Loading…
Reference in New Issue