-
+
{#each links as link}
{/each}
diff --git a/plugins/chunter-resources/src/components/threads/ThreadMessagePresenter.svelte b/plugins/chunter-resources/src/components/threads/ThreadMessagePresenter.svelte
index 8bf7514f06..3b86041624 100644
--- a/plugins/chunter-resources/src/components/threads/ThreadMessagePresenter.svelte
+++ b/plugins/chunter-resources/src/components/threads/ThreadMessagePresenter.svelte
@@ -40,6 +40,7 @@
export let withShowMore: boolean = true
export let hoverStyles: 'borderedHover' | 'filledHover' = 'borderedHover'
export let attachmentImageSize: AttachmentImageSize = 'x-large'
+ export let videoPreload = true
export let onClick: (() => void) | undefined = undefined
export let onReply: (() => void) | undefined = undefined
@@ -76,6 +77,7 @@
{hoverStyles}
{withShowMore}
{attachmentImageSize}
+ {videoPreload}
showLinksPreview={false}
{onClick}
{onReply}
diff --git a/plugins/notification-resources/src/components/inbox/ActivityInboxNotificationPresenter.svelte b/plugins/notification-resources/src/components/inbox/ActivityInboxNotificationPresenter.svelte
index 55b1593332..2398b83f70 100644
--- a/plugins/notification-resources/src/components/inbox/ActivityInboxNotificationPresenter.svelte
+++ b/plugins/notification-resources/src/components/inbox/ActivityInboxNotificationPresenter.svelte
@@ -141,6 +141,7 @@
{actions}
hoverable={false}
{withFlatActions}
+ videoPreload={false}
onReply={() => {
handleReply(displayMessage)
}}