mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 04:09:49 +00:00
Make quote props consistent, white circle dark theme play overlay
Prevents errors in the logs about attempting to load images from their relative patn instead of the absolute path. No effect on the user.
This commit is contained in:
@@ -280,17 +280,15 @@
|
||||
|
||||
return ConversationController.get(author);
|
||||
},
|
||||
processAttachment(attachment, externalObjectUrl) {
|
||||
processQuoteAttachment(attachment, externalObjectUrl) {
|
||||
const { thumbnail } = attachment;
|
||||
const objectUrl = (thumbnail && thumbnail.objectUrl) || externalObjectUrl;
|
||||
const path = thumbnail && thumbnail.path;
|
||||
|
||||
const thumbnailWithObjectUrl =
|
||||
!objectUrl && !path
|
||||
? null
|
||||
: Object.assign({}, attachment.thumbnail || {}, {
|
||||
objectUrl: objectUrl || path,
|
||||
});
|
||||
const thumbnailWithObjectUrl = !objectUrl
|
||||
? null
|
||||
: Object.assign({}, attachment.thumbnail || {}, {
|
||||
objectUrl,
|
||||
});
|
||||
|
||||
return Object.assign({}, attachment, {
|
||||
isVoiceMessage: Signal.Types.Attachment.isVoiceMessage(attachment),
|
||||
@@ -590,7 +588,7 @@
|
||||
return {
|
||||
text: this.createNonBreakingLastSeparator(quote.text),
|
||||
attachment: firstAttachment
|
||||
? this.processAttachment(firstAttachment, objectUrl)
|
||||
? this.processQuoteAttachment(firstAttachment, objectUrl)
|
||||
: null,
|
||||
isFromMe,
|
||||
authorPhoneNumber,
|
||||
|
||||
Reference in New Issue
Block a user