mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-16 12:49:55 +01:00
No need to unwrap Bytes before adding to dictionary.
This commit is contained in:
@@ -83,8 +83,7 @@ class MessagingManagerImpl implements MessagingManager, AddContactHook,
|
||||
try {
|
||||
BdfDictionary meta = new BdfDictionary();
|
||||
meta.put("timestamp", m.getMessage().getTimestamp());
|
||||
if (m.getParent() != null)
|
||||
meta.put("parent", m.getParent().getBytes());
|
||||
if (m.getParent() != null) meta.put("parent", m.getParent());
|
||||
meta.put("contentType", m.getContentType());
|
||||
meta.put("local", true);
|
||||
meta.put("read", true);
|
||||
|
||||
Reference in New Issue
Block a user