make exporting backup compatible with conversations
This commit is contained in:
parent
74251e61d4
commit
da925991c1
1 changed files with 2 additions and 1 deletions
|
@ -280,11 +280,12 @@ public class ExportBackupService extends Service {
|
|||
Cursor cursor;
|
||||
if (runsTwentySix()) {
|
||||
// not select and create column Message.FILE_DELETED to be compareable with conversations
|
||||
// in C Message.DELETED = Message.FILE_DELETED in PAM so do not select this column, too.
|
||||
cursor = db.rawQuery("select messages." + String.join(", messages.", new String[]{
|
||||
Message.UUID, Message.CONVERSATION, Message.TIME_SENT, Message.COUNTERPART, Message.TRUE_COUNTERPART,
|
||||
Message.BODY, Message.ENCRYPTION, Message.STATUS, Message.TYPE, Message.RELATIVE_FILE_PATH,
|
||||
Message.SERVER_MSG_ID, Message.FINGERPRINT, Message.CARBON, Message.EDITED, Message.READ,
|
||||
Message.DELETED, Message.OOB, Message.ERROR_MESSAGE, Message.READ_BY_MARKERS, Message.MARKABLE,
|
||||
Message.OOB, Message.ERROR_MESSAGE, Message.READ_BY_MARKERS, Message.MARKABLE,
|
||||
Message.REMOTE_MSG_ID, Message.CONVERSATION
|
||||
}) + " from messages join conversations on conversations.uuid=messages.conversationUuid where conversations.accountUuid=?", new String[]{uuid});
|
||||
} else {
|
||||
|
|
Reference in a new issue