We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deqr Wascally team, According to the documentation the options are optional. If you do not specify them addExchange raise an error.
This is the code generating the error. It assumes options is an object.
if ( _.isObject( name ) ) { options = name; connectionName = type; } else { options.name = name; options.type = type; }
adding the following line should solve the issue
options=options||{};
thanks,
Alex
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Deqr Wascally team,
According to the documentation the options are optional.
If you do not specify them addExchange raise an error.
This is the code generating the error. It assumes options is an object.
adding the following line should solve the issue
thanks,
Alex
The text was updated successfully, but these errors were encountered: