Skip to content

Commit

Permalink
fix (#425)
Browse files Browse the repository at this point in the history
  • Loading branch information
statefb authored Jul 3, 2024
1 parent 0cc9aa7 commit a4b8a41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/repositories/conversation.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def find_conversation_by_id(user_id: str, conversation_id: str) -> ConversationM
content_type=c["content_type"],
body=c["body"],
media_type=c["media_type"],
file_name=c["file_name"],
file_name=c.get("file_name", None),
)
for c in v["content"]
]
Expand Down

0 comments on commit a4b8a41

Please sign in to comment.