logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: ece79f84a8118750117d446f299b25ff79d9f8c1
parent 45470e3355ee7fc98ef3f380bb4a1bef0a060d6c
Author: Henry Jameson <me@hjkos.com>
Date:   Wed, 11 Oct 2023 22:43:51 +0300

don't display link preview card if it's the same as quoted status

Diffstat:

Msrc/components/status_content/status_content.js4++++
Msrc/components/status_content/status_content.vue2+-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/components/status_content/status_content.js b/src/components/status_content/status_content.js @@ -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) diff --git a/src/components/status_content/status_content.vue b/src/components/status_content/status_content.vue @@ -43,7 +43,7 @@ /> <div - v-if="status.card && !noHeading && !compact" + v-if="statusCard && !noHeading && !compact" class="link-preview media-body" > <link-preview