Jericho / ZoomNet

.NET client library for the Zoom.us REST API v2
MIT License
69 stars 46 forks source link

IEnumerable<RegistrantInfo> not provided to TypeInfoResolver #279

Closed Jericho closed 1 year ago

Jericho commented 1 year ago

As reported by @maaaruf , developers get an exception when attempting to register multiple registrants to a meeting:

Screenshot of a exception

This is due to the fact that parameter IEnumerable<BatchRegistrant> registrants is not converted to an array prior to serialization. In other words, the line { "registrants", registrants }, should be { "registrants", registrants.ToArray() }

Jericho commented 1 year ago

oh and same issue when attempting to register multiple registrants to a webinar due to the same problem.

Jericho commented 1 year ago

:tada: This issue has been resolved in version 0.59.1 :tada:

The release is available on:

Your GitReleaseManager bot :package::rocket: