Skip to content

Commit

Permalink
Fix #748
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasjuhrich committed Sep 17, 2024
1 parent f8f5d89 commit 968f2ad
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pycroft/lib/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -1319,6 +1319,8 @@ def finish_member_request(
prm.move_in_date, ignore_similar_name)

user = user_from_pre_member(prm, processor=processor)
processor = processor or user
assert processor is not None

move_in_datetime = utc.with_min_time(prm.move_in_date)
move_in(
Expand All @@ -1327,7 +1329,7 @@ def finish_member_request(
prm.room.level,
prm.room.number,
None,
processor if processor is not None else user,
processor,
when=move_in_datetime,
)

Expand Down

0 comments on commit 968f2ad

Please sign in to comment.