Issue with ipaddr
VillainsRule opened this issue · 1 comments
VillainsRule commented
The "ipaddr.js" dependency can crash the app.
The issue is, sometimes "string" is actually an array of objects.
I've currently fixed it by adding the following line to the module:
if (typeof string === 'object') string = string[0].address;
However, I'm looking for a more permanent solution.
Not sure if this is an installation error.
I'm using the latest version of this, and am using this package as it is required for Ultraviolet deployment.