update date of summer hakken, fix autumn hakken month
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Hendrik Sokolowski 2024-07-03 00:45:00 +02:00
parent 46563ca6b5
commit 061234f03c
Signed by: hensoko
GPG key ID: 5C36A01B80BCCC59
2 changed files with 11 additions and 1 deletions

View file

@ -26,6 +26,9 @@ dates:
- name: Summer 2024
id: summer-2024
theme: Hot CPU Summer
override_date:
start: '2024-08-23'
end: '2024-08-25'
location:
en: Cologne @ [MiOM space](https://miom.space)
de: Köln @ [MiOM Kreativraum](https://miom.space)

View file

@ -16,9 +16,16 @@ const getStartAndEnd = (date) => {
Winter: 1,
Spring: 4,
Summer: 7,
Autumn: 10,
Autumn: 11,
}[version];
if (date.override_date) {
return {
start: new Date(date.override_date.start),
end: new Date(date.override_date.end)
};
}
// We start searching on the 20th of that specific month
const d = new Date();
d.setFullYear(parseInt(year, 10));