Skip to content

Commit

Permalink
Merge branch 'release/0.59.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jericho committed Mar 30, 2023
2 parents ba1af10 + 83ff5a2 commit b87050d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/ZoomNet/Resources/Meetings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ public Task<BatchRegistrantInfo[]> PerformBatchRegistrationAsync(long meetingId,

var data = new JsonObject
{
{ "registrants", registrants },
{ "registrants", registrants.ToArray() },
{ "auto_approve", autoApprove },
{ "registrants_confirmation_email", registrantsConfirmationEmail },
};
Expand Down
2 changes: 1 addition & 1 deletion Source/ZoomNet/Resources/Webinars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ public Task<BatchRegistrantInfo[]> PerformBatchRegistrationAsync(long webinarId,
var data = new JsonObject
{
{ "auto_approve", autoApprove },
{ "registrants", registrants },
{ "registrants", registrants.ToArray() },
};

return _client
Expand Down

0 comments on commit b87050d

Please sign in to comment.