forked from FoundKeyGang/FoundKey
Fix: ap/show (#3350)
This commit is contained in:
parent
168db6891f
commit
389315e000
1 changed files with 2 additions and 2 deletions
|
@ -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 })
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue