Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
johanvdw committed Jan 30, 2025
2 parents 75ddcca + 44418ef commit 85e69dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion volunteers/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -539,9 +539,10 @@ def detect_dr_manhattan(self):
schedule[date] = []
for task in current_tasks:
for item in schedule[task.date]:
# If the times overlap, and they don't have the same name and location, then they need to be Dr Manhattan
if (item.start_time <= task.start_time < item.end_time \
or item.start_time < task.end_time <= item.end_time) \
and (item.name != task.name and item.location != task.location):
and not (item.name == task.name and item.location == task.location):
retval[0] = True
item_found = False
for task_set in retval[1]:
Expand Down

0 comments on commit 85e69dd

Please sign in to comment.