Skip to content

Commit

Permalink
fix(events, requests): missing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
thejoeejoee committed Oct 27, 2023
1 parent ea6f419 commit e17b268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fiesta/apps/buddy_system/views/matching.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def post(self, request, pk: uuid.UUID):
match = BuddyRequestMatch(
request=br,
matcher=self.request.user,
note=self.request.POST.get("note"),
note=self.request.POST.get("note") or "",
)

# TODO: check matcher relation to responsible section
Expand Down

0 comments on commit e17b268

Please sign in to comment.