Related attachments

This commit is contained in:
M66B
2022-02-12 20:39:49 +01:00
parent 0814865d0c
commit c95cc95994
7 changed files with 2759 additions and 20 deletions

View File

@@ -175,8 +175,11 @@ public class AdapterAttachment extends RecyclerView.Adapter<AdapterAttachment.Vi
StringBuilder sb = new StringBuilder();
sb.append(attachment.type);
if (debug || BuildConfig.DEBUG) {
if (attachment.cid != null)
if (attachment.cid != null) {
sb.append(' ').append(attachment.cid);
if (attachment.related != null)
sb.append(' ').append(attachment.related);
}
if (attachment.isEncryption())
sb.append(' ').append(attachment.encryption);
}