|
|
|
@ -108,23 +108,6 @@ export class ChatMessage extends DataMessage {
|
|
|
|
|
if (!sentTimestamp || !isNumber(sentTimestamp)) {
|
|
|
|
|
throw new Error('Tried to build a sync message without a sentTimestamp');
|
|
|
|
|
}
|
|
|
|
|
// the dataMessage.profileKey is of type ByteBuffer. We need to make it a Uint8Array
|
|
|
|
|
const lokiProfile: any = {};
|
|
|
|
|
if (dataMessage.profileKey?.length) {
|
|
|
|
|
lokiProfile.profileKey = new Uint8Array(
|
|
|
|
|
(dataMessage.profileKey as any).toArrayBuffer()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (dataMessage.profile) {
|
|
|
|
|
if (dataMessage.profile?.displayName) {
|
|
|
|
|
lokiProfile.displayName = dataMessage.profile.displayName;
|
|
|
|
|
}
|
|
|
|
|
if (dataMessage.profile?.profilePicture) {
|
|
|
|
|
lokiProfile.avatarPointer = dataMessage.profile.profilePicture;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const timestamp = toNumber(sentTimestamp);
|
|
|
|
|
const body = dataMessage.body || undefined;
|
|
|
|
|
const attachments = (dataMessage.attachments || []).map(attachment => {
|
|
|
|
@ -147,7 +130,6 @@ export class ChatMessage extends DataMessage {
|
|
|
|
|
attachments,
|
|
|
|
|
body,
|
|
|
|
|
quote,
|
|
|
|
|
lokiProfile,
|
|
|
|
|
preview,
|
|
|
|
|
syncTarget,
|
|
|
|
|
});
|
|
|
|
|