Remove async from signature method#120
Conversation
|
@oblivioncth Do you have time to see if this fix resolves the issue you are experiencing? |
|
Yea just give me a little bit. Obviously my bulb isn't working via MQTT right now even after setting up with the old version, but #57 implies I may have luck if I provide a key/user id. There was another issue I don't remember where you even implies never versions no longer default to a blank key so I imagine 1.0.16 may be one of those. But sure I can see if this at least lets me use the latest version to perform the setup and get past the empty response issue. |
|
#103 is what I was referring to. The README still says that "" is the default for the key, but |
|
That's right, older versions of the Meross firmware would allow a blank key so that's what I used. But newer firmware required something, so I updated the defaults. I'll update the documentation to make sure it says the right thing. |
:( |
Transport.send()was calling an async methodMessage.sign()without await. Since the sign method is synchronous, async has been removed from the method signature.