Merge pull request #24486 from Classic298/fix/notes-is-pinned-typeerror

fix: notes is_pinned TypeError on create/get
This commit is contained in:
Classic298
2026-05-09 13:56:06 +02:00
committed by GitHub
parent 0f07af1bb8
commit a0268e51fc
2 changed files with 5 additions and 2 deletions

View File

@@ -140,7 +140,7 @@ class NoteTable:
}
)
new_note = Note(**note.model_dump(exclude={'access_grants'}))
new_note = Note(**note.model_dump(exclude={'access_grants', 'is_pinned'}))
db.add(new_note)
await db.commit()

View File

@@ -294,7 +294,10 @@ async def get_note_by_id(
)
pinned_note_ids = await Notes.get_pinned_note_ids(user.id, db=db)
return NoteResponse(**note.model_dump(), write_access=write_access, is_pinned=note.id in pinned_note_ids)
return NoteResponse(
**{**note.model_dump(), 'is_pinned': note.id in pinned_note_ids},
write_access=write_access,
)
############################