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
I think I'm having a similar issue. It was manifesting as the following error: RangeError: Invalid array length and seems to be emanating from execute() in apicontrollersbase.js. Commenting out the logger.debug(JSON.stringify(this._request, 2, null)); seems to have resolved the issue for me.
JSON.stringify(this._request, 2, null)
it should be:
JSON.stringify(this._request, null, 2)
Specs:
JSON.stringify(value)
JSON.stringify(value, replacer)
JSON.stringify(value, replacer, space)
The text was updated successfully, but these errors were encountered: