diff options
Diffstat (limited to 'src/server')
| -rw-r--r-- | src/server/api/endpoints/ap/show.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/api/endpoints/ap/show.ts b/src/server/api/endpoints/ap/show.ts index 861c8bce2e..7f4afa1f6e 100644 --- a/src/server/api/endpoints/ap/show.ts +++ b/src/server/api/endpoints/ap/show.ts @@ -103,7 +103,7 @@ async function fetchAny(uri: string) { }; } - if (['Note', 'Question'].includes(object.type)) { + if (['Note', 'Question', 'Article'].includes(object.type)) { const note = await createNote(object.id); return { type: 'Note', |