Skip to content

Commit

Permalink
빙고보드 중복으로 받아지는 부분 개선
Browse files Browse the repository at this point in the history
  • Loading branch information
4roring committed Nov 22, 2024
1 parent 2b8acbf commit b70049c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/bingo/bingo_boards.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ async def update_bingo_status_by_selected_user(
not_selected_ids = []
for idx, bingo_dict in board_data.items():
value, status = bingo_dict["value"], bingo_dict["status"]
if receive_user.username == value: # 이미 interaction 한 유저인 경우는 Pass
if send_user.username == value: # 이미 interaction 한 유저인 경우는 Pass
already_interaction = True
break
if status == 0:
Expand Down

0 comments on commit b70049c

Please sign in to comment.