-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
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
Firmware version check appears to be incorrect #5246
Comments
Well found, thanks! Fixed Changes will be available in the dev branch in a few hours from now. (https://www.zigbee2mqtt.io/advanced/more/switch-to-dev-branch.html) |
There's still an issue when the user chooses the "force" option:
You'd either need to return the object with |
@rccoleman thanks for your sharp eyes again! fixed |
I was trying to update my Third Reality plugin modules to a newer firmware version using a local file & index and got this odd set of logs:
Version 268513310 from the new file is clearly larger than 268513281, so I poked around in the code and found this PR.
isNewImageAvailable()
now returns an object withavailable
as a member, but to me it appears that it's still being treated as if it's an integer inisUpdateAvailable()
.The object is returned from
isNewImageAvailable()
like this:But I believe that this is still expecting it to be a positive or negative integer:
I'm not a Javascript guy, so forgive me if I'm missing something, but it started with weird behavior and I suspect this is why.
I'm using 1.29.0-dev commit: 4e40c82 of Zigbee2MQTT.
The text was updated successfully, but these errors were encountered: