Prevent duplicate attachment sequence numbers

This commit is contained in:
M66B
2018-10-29 07:51:02 +00:00
parent ebf953c291
commit e9b91c049a
2 changed files with 4 additions and 4 deletions

View File

@@ -578,7 +578,7 @@ public class FragmentCompose extends FragmentEx {
try {
db.beginTransaction();
int seq = db.attachment().getAttachmentCount(id);
int seq = db.attachment().getAttachmentSequence(id);
attachment1.message = id;
attachment1.sequence = seq + 1;
@@ -868,7 +868,7 @@ public class FragmentCompose extends FragmentEx {
Log.i(Helper.TAG, "Attaching to id=" + id);
attachment.message = draft.id;
attachment.sequence = db.attachment().getAttachmentCount(draft.id) + 1;
attachment.sequence = db.attachment().getAttachmentSequence(draft.id) + 1;
attachment.name = name;
String extension = Helper.getExtension(attachment.name);