Fix bug
This commit is contained in:
parent
cad49892d3
commit
fffa32df48
@ -130,14 +130,14 @@ async function fetchAny(uri: string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function mergePack(user: User, note: Note) {
|
async function mergePack(user: User, note: Note) {
|
||||||
if (user !== null) {
|
if (user != null) {
|
||||||
return {
|
return {
|
||||||
type: 'User',
|
type: 'User',
|
||||||
object: await Users.pack(user, null, { detail: true })
|
object: await Users.pack(user, null, { detail: true })
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (note !== null) {
|
if (note != null) {
|
||||||
return {
|
return {
|
||||||
type: 'Note',
|
type: 'Note',
|
||||||
object: await Notes.pack(note, null, { detail: true })
|
object: await Notes.pack(note, null, { detail: true })
|
||||||
|
Loading…
Reference in New Issue
Block a user