From 441c7714d92e85f045bdcf667e490aeb227f866c Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Thu, 1 May 2025 15:52:00 +0200 Subject: [PATCH] fix(api): :bug: Fix source not being correctly saved when creating notes --- api/api/v1/statuses/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/api/v1/statuses/index.ts b/api/api/v1/statuses/index.ts index aa00206e..d6365ad7 100644 --- a/api/api/v1/statuses/index.ts +++ b/api/api/v1/statuses/index.ts @@ -225,6 +225,8 @@ export default apiRoute((app) => replyId: in_reply_to_id ?? undefined, quotingId: quote_id ?? undefined, applicationId: application?.id, + contentSource: status, + contentType: content_type, }); // Emojis, mentions, and attachments are stored in a different table, so update them there too