Skip to content

Commit

Permalink
fix: adding boardid from path parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonNotJson committed Sep 24, 2023
1 parent 46ed24e commit 5b0c09c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lambda/post-thread/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def post_thread(board_id, thread, uid):
Body=image_data, ContentType=content_type)

thread_item = {
"board_id": thread["board_id"],
"board_id": board_id,
"created_at": dt_now,
"updated_at": dt_now,
"title": thread["title"],
Expand Down

0 comments on commit 5b0c09c

Please sign in to comment.