From 1445a57d8d7e66ace7a3e589ced8de6c1f8c3983 Mon Sep 17 00:00:00 2001 From: Basil Date: Tue, 28 Feb 2023 15:10:04 -0700 Subject: [PATCH] feat: copy content warning when replying (#1672) --- composables/masto/statusDrafts.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/composables/masto/statusDrafts.ts b/composables/masto/statusDrafts.ts index 45b10fc7..e6bc0e5d 100644 --- a/composables/masto/statusDrafts.ts +++ b/composables/masto/statusDrafts.ts @@ -72,6 +72,8 @@ export function getReplyDraft(status: mastodon.v1.Status) { return getDefaultDraft({ initialText: '', inReplyToId: status!.id, + sensitive: status.sensitive, + spoilerText: status.spoilerText, visibility: status.visibility, mentions: accountsToMention, language: status.language,