You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On 32-bit builds of PHP, numbers that exceed the limits of a 32-bit integer (±2,000,000,000) are silently cast to a float. The organizer_id expects an integer. For my account, those values were all greater than that maximum number (11 digits) and silently failed. Allowing the organizer_id to be passed in as a string avoids the issue.
The text was updated successfully, but these errors were encountered:
On 32-bit builds of PHP, numbers that exceed the limits of a 32-bit integer (±2,000,000,000) are silently cast to a
float
. Theorganizer_id
expects an integer. For my account, those values were all greater than that maximum number (11 digits) and silently failed. Allowing theorganizer_id
to be passed in as astring
avoids the issue.The text was updated successfully, but these errors were encountered: