forked from FoundKeyGang/FoundKey
Merge pull request #1721 from rinsuki/activitypub/support-cw
maybe Support CW in ActivityPub
This commit is contained in:
commit
4d90d554f8
2 changed files with 2 additions and 0 deletions
|
@ -170,6 +170,7 @@ export async function createNote(value: any, resolver?: Resolver, silent = false
|
||||||
media,
|
media,
|
||||||
reply,
|
reply,
|
||||||
renote: undefined,
|
renote: undefined,
|
||||||
|
cw: note.summary,
|
||||||
text: text,
|
text: text,
|
||||||
viaMobile: false,
|
viaMobile: false,
|
||||||
geo: undefined,
|
geo: undefined,
|
||||||
|
|
|
@ -62,6 +62,7 @@ export default async function renderNote(note: INote, dive = true) {
|
||||||
id: `${config.url}/notes/${note._id}`,
|
id: `${config.url}/notes/${note._id}`,
|
||||||
type: 'Note',
|
type: 'Note',
|
||||||
attributedTo,
|
attributedTo,
|
||||||
|
summary: note.cw,
|
||||||
content: toHtml(note),
|
content: toHtml(note),
|
||||||
published: note.createdAt.toISOString(),
|
published: note.createdAt.toISOString(),
|
||||||
to: 'https://www.w3.org/ns/activitystreams#Public',
|
to: 'https://www.w3.org/ns/activitystreams#Public',
|
||||||
|
|
Loading…
Reference in a new issue