From b1f12713894c5b697da3a58ef11934076ac2f8ec Mon Sep 17 00:00:00 2001 From: John Livingston Date: Thu, 20 Apr 2023 18:32:13 +0200 Subject: [PATCH] Fix missing case. --- server/lib/federation/outgoing.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/lib/federation/outgoing.ts b/server/lib/federation/outgoing.ts index ced89bee..27248ee1 100644 --- a/server/lib/federation/outgoing.ts +++ b/server/lib/federation/outgoing.ts @@ -33,6 +33,8 @@ async function videoBuildJSONLD ( ]) if (settings['federation-dont-publish-remotely']) { + // Note: we store also outgoing data. Could help for migration/cleanup scripts, for example. + await storeVideoLiveChatInfos(options, video, false) return jsonld }