Skip to content

Commit

Permalink
Fix happening now notification display
Browse files Browse the repository at this point in the history
  • Loading branch information
quincylvania committed Jan 19, 2024
1 parent 7569f15 commit 24508c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _includes/site_meta.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
{% assign starttime = next_session.date | date: '%s' %}
{% assign endtime = starttime | plus: 3600 %}
{% if next_session.event %}
{% assign all_in_series = future_sessions | where: 'event', next_session.event %}
{% assign all_in_series = site.posts | where: 'event', next_session.event | sort: 'date' %}
{% assign first_in_series = all_in_series | first %}
{% assign last_in_series = all_in_series | last %}
{% assign starttime = first_in_series.date | date: '%s' %}
Expand Down

0 comments on commit 24508c2

Please sign in to comment.