mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-11-22 22:15:12 +00:00
Fix error in featuredNotes (#3730)
This commit is contained in:
parent
49921f2dcf
commit
a53e0d9f73
1 changed files with 1 additions and 1 deletions
|
@ -441,7 +441,7 @@ export async function updateFeatured(userId: mongo.ObjectID) {
|
|||
|
||||
await User.update({ _id: user._id }, {
|
||||
$set: {
|
||||
pinnedNoteIds: featuredNotes.map(note => note._id)
|
||||
pinnedNoteIds: featuredNotes.filter(note => note != null).map(note => note._id)
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue