Event Notification timing oddness
Using Jamroom

cool, a bit at a time then.
so in code terms this was requested as the search parameters:
"event_date >= {$min}",
"event_date < {$max}"
and it was being changed by a listener:
Docs: "Events and Listeners"
https://www.jamroom.net/the-jamroom-network/documentation/development/1011/events-and-listeners
so that it read:
"event_end >= {$min}",
"event_end >= {$min}",
So the wrong things were coming back in the search results. {$min} is the time now. and > = means as you would expect 'greater or equal' which equates to "any events that have an end date in the future"
Just a FYI.