don't display link preview card if it's the same as quoted status
This commit is contained in:
parent
45470e3355
commit
ece79f84a8
2 changed files with 5 additions and 1 deletions
|
|
@ -73,6 +73,10 @@ const StatusContent = {
|
|||
},
|
||||
computed: {
|
||||
...controlledOrUncontrolledGetters(['showingTall', 'expandingSubject', 'showingLongSubject']),
|
||||
statusCard () {
|
||||
if (!this.status.card) return null
|
||||
return this.status.card.url === this.status.quote_url ? null : status.card
|
||||
},
|
||||
hideAttachments () {
|
||||
return (this.mergedConfig.hideAttachments && !this.inConversation) ||
|
||||
(this.mergedConfig.hideAttachmentsInConv && this.inConversation)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue