Skip to content
Snippets Groups Projects
Commit 389315e0 authored by MeiMei's avatar MeiMei Committed by syuilo
Browse files

Fix: ap/show (#3350)

parent 168db689
No related merge requests found
......@@ -80,7 +80,7 @@ async function fetchAny(uri: string) {
const user = await createPerson(object.id);
return {
type: 'User',
object: user
object: await packUser(user, null, { detail: true })
};
}
......@@ -88,7 +88,7 @@ async function fetchAny(uri: string) {
const note = await createNote(object.id);
return {
type: 'Note',
object: note
object: await packNote(note, null, { detail: true })
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment