Skip to content

Commit

Permalink
fix: remove maxResults
Browse files Browse the repository at this point in the history
- maxResults seems to block generation in some cases. Not sure why
  there would be more results than expected but first one seems to be
  the right one so removing should be ok

Signed-off-by: Michael Dawson <mdawson@devrus.com>
  • Loading branch information
mhdawson committed Apr 29, 2024
1 parent 19f4838 commit 0f11f6f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion create-node-meeting-artifacts.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ ghauth(authOptions, (err, authData) => {
timeMax: (new Date(Date.now() + 7 * 24 * 60 * 60 * 1000)).toISOString(),
singleEvents: true,
q: meetingProperties.CALENDAR_FILTER.replace(/"/g, '').replace(/ /g, '.'),
maxResults: 2,
}, (err, response) => {
if (err) {
throw err;
Expand Down

0 comments on commit 0f11f6f

Please sign in to comment.