mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-18 05:57:44 +00:00
parent
5f7c30e840
commit
0753ff85ed
@ -135,9 +135,11 @@ public class SQLCipherMigrationHelper {
|
|||||||
});
|
});
|
||||||
|
|
||||||
copyTable("thread", legacyDb, modernDb, (row, progress) -> {
|
copyTable("thread", legacyDb, modernDb, (row, progress) -> {
|
||||||
|
Long snippetType = row.getAsLong("snippet_type");
|
||||||
|
if (snippetType == null) snippetType = 0L;
|
||||||
|
|
||||||
Pair<Long, String> plaintext = getPlaintextBody(legacyCipher, legacyAsymmetricCipher,
|
Pair<Long, String> plaintext = getPlaintextBody(legacyCipher, legacyAsymmetricCipher,
|
||||||
row.getAsLong("snippet_type"),
|
snippetType, row.getAsString("snippet"));
|
||||||
row.getAsString("snippet"));
|
|
||||||
|
|
||||||
row.put("snippet", plaintext.second);
|
row.put("snippet", plaintext.second);
|
||||||
row.put("snippet_type", plaintext.first);
|
row.put("snippet_type", plaintext.first);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user