ssb: Fix composing private drafts.

This commit is contained in:
2025-08-13 20:28:03 -04:00
parent b84b561109
commit d78828554b
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
{ {
"type": "tildefriends-app", "type": "tildefriends-app",
"emoji": "🦀", "emoji": "🦀",
"previous": "&dG2winiXQktKgYn8MEX+K7HUtY7PfYh1a9L9IVdCrtM=.sha256" "previous": "&vvbZ1UaJgi4mVonUOmevMO4iB1tL70vhCA/Jo8tnaX4=.sha256"
} }

View File

@@ -92,7 +92,7 @@ class TfComposeElement extends LitElement {
bubbles: true, bubbles: true,
composed: true, composed: true,
detail: { detail: {
id: this.branch, id: this.branch ?? (this.recipients ? this.recipients.join(',') : undefined),
draft: draft, draft: draft,
}, },
}) })