We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1ecae2b + 898d467 commit a96bb03Copy full SHA for a96bb03
app/NextStammtisch.tsx
@@ -22,6 +22,13 @@ export default function NextStammtisch() {
22
// Set start time to 21:00 UTC which is intentially a bit into the event
23
nextStammtisch.setUTCHours(21)
24
25
+ // Check if this is June 2025 because of ProtocolBerg v2 (month 5, since January is 0)
26
+ if (nextStammtisch.getUTCFullYear() === 2025 && nextStammtisch.getUTCMonth() === 5) {
27
+ // Skip June 2025
28
+ nextMonth++
29
+ continue
30
+ }
31
+
32
// If Stammtisch already started/passed this month, move to next month
33
nextMonth++
34
} while (nextStammtisch < currentDate)
0 commit comments