feat(jour-fixe): backfill o365_series_id for LANdata; raise calendar query top to 500

This commit is contained in:
beo3000 2026-05-06 21:12:56 +02:00
parent 0679aa013f
commit 4be6c54761
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@ teilnehmer:
- "[[Johannes Meth]]"
- "[[Willhelm Meth]]"
rhythmus: wöchentlich
o365_series_id: AAMkADM1ZWEzODc3LTRjMTEtNGExYi04MGMwLWNhZTE0ZjkyNDVjOABGAAAAAAAzJIlWIuj0RaXfYmzBJE-OBwDgTc1JbQW4SJ6rqQ9O1ob4AAAAAAENAAANyBnAnrwiRY4O-WqX95a9AACPsXB9AAA=
---
# LANdata — Agenda

View File

@ -94,7 +94,7 @@ async function getCalendarEvents(daysAhead = 7) {
})
.select('id,subject,start,end,body,attendees,seriesMasterId')
.orderby('start/dateTime')
.top(50)
.top(500)
.get();
return (response.value || []).map(parseEventToMeeting);