mirror of
https://github.com/open-webui/open-webui.git
synced 2026-07-15 21:19:39 -05:00
Merge pull request #24486 from Classic298/fix/notes-is-pinned-typeerror
fix: notes is_pinned TypeError on create/get
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -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,
|
||||
)
|
||||
|
||||
|
||||
############################
|
||||
|
||||
Reference in New Issue
Block a user