|
|
|
@ -639,9 +639,10 @@ export class MessageModel extends Backbone.Model<MessageAttributes> {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const { author, id, referencedMessageNotFound } = quote;
|
|
|
|
|
const contact = author && ConversationController.getInstance().get(author);
|
|
|
|
|
const contact: ConversationModel = author && ConversationController.getInstance().get(author);
|
|
|
|
|
|
|
|
|
|
const authorName = contact ? contact.getContactProfileNameOrShortenedPubKey() : null;
|
|
|
|
|
|
|
|
|
|
const authorName = contact ? contact.getName() : null;
|
|
|
|
|
const isFromMe = contact ? contact.id === UserUtils.getOurPubKeyStrFromCache() : false;
|
|
|
|
|
const onClick = noClick
|
|
|
|
|
? null
|
|
|
|
|