membershipworks: Don't create event meeting times where end <= start in sync
This commit is contained in:
parent
12271ef327
commit
654136d476
@ -159,6 +159,7 @@ def scrape_events():
|
|||||||
|
|
||||||
if (
|
if (
|
||||||
event_ext.end is not None
|
event_ext.end is not None
|
||||||
|
and event_ext.end > event_ext.start
|
||||||
and event_ext.end - event_ext.start < MAX_MEETING_TIME
|
and event_ext.end - event_ext.start < MAX_MEETING_TIME
|
||||||
):
|
):
|
||||||
meeting_times_count = event_ext.meeting_times.count()
|
meeting_times_count = event_ext.meeting_times.count()
|
||||||
|
Loading…
Reference in New Issue
Block a user