Max Mathieu

Results 4 comments of Max Mathieu

As far as I can see the issue is because `getTopology` has been deprecated, as reflected in the `sonos` package: https://github.com/bencevans/node-sonos/commit/7b7164d91895ae64dbc1f2d92968bf962dd67443 I can try to submit a PR but it...

Facing a similar issue here. Just a warning though, but this is the only package we use that throws this warning

For context, we had a client calling the API with malformed requests (I guess crafting a `multipart/form-data` request is hard in some languages...) which resulting in our API crashing and...

Hi, your multipart request is malformed, so the error (thrown by `busboy` is expected) You need an empty line between a part header and the content ``` --abcde12345 Content-Disposition: form-data;...