mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 02:50:56 +01:00
Fallback to attachment type and size
This commit is contained in:
@@ -899,8 +899,7 @@ public class MessageHelper {
|
||||
if (index < 0)
|
||||
for (int i = 0; i < remotes.size(); i++) {
|
||||
EntityAttachment remote = remotes.get(i);
|
||||
if (remote.name == null && remote.cid == null &&
|
||||
Objects.equals(remote.type, local.type) &&
|
||||
if (Objects.equals(remote.type, local.type) &&
|
||||
Objects.equals(remote.size, local.size)) {
|
||||
index = i;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user