This commit is contained in:
Phillip Thelen
2024-02-28 18:22:55 +01:00
committed by Sabe Jones
parent fb56f7df20
commit a50c0eb1e7
2 changed files with 6 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ export function getCurrentEvent () {
const now = moment();
const currEvtKey = Object.keys(common.content.repeatingEvents).find(
evtKey => {
const event = common.content.repeatingEventsS[evtKey];
const event = common.content.repeatingEvents[evtKey];
const startDate = event.start.replace('1970', now.year());
const endDate = event.end.replace('1970', now.year());