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
A new node had some invalid telemetry today on .328
meshinfo_1 | | File "templates/static/node.html.j2", line 43, in block 'content' meshinfo_1 | | {{ node.telemetry.temperature | round(1) }}°C meshinfo_1 | | ^^^^^^^^^^^^^^^^^ meshinfo_1 | | File "/usr/local/lib/python3.12/site-packages/jinja2/filters.py", line 1169, in do_round meshinfo_1 | | return round(value, precision) meshinfo_1 | | ^^^^^^^^^^^^^^^^^^^^^^^ meshinfo_1 | | TypeError: type str doesn't define round method
nodes.json had;
"telemetry": { "relative_humidity": "NaN", "temperature": "NaN" }
It also ended up in telenetry.json
meshinfo_1 | | File "templates/static/telemetry.html.j2", line 173, in block 'content' meshinfo_1 | | {{ item.payload.temperature | round(2) }} °C
The text was updated successfully, but these errors were encountered:
@quimnut Good report. Yes, confirmed, I'm seeing these too.
Sorry, something went wrong.
@quimnut Do you want to take a stab at this one?
Completed.
No branches or pull requests
A new node had some invalid telemetry today on .328
meshinfo_1 | | File "templates/static/node.html.j2", line 43, in block 'content'
meshinfo_1 | | {{ node.telemetry.temperature | round(1) }}°C
meshinfo_1 | | ^^^^^^^^^^^^^^^^^
meshinfo_1 | | File "/usr/local/lib/python3.12/site-packages/jinja2/filters.py", line 1169, in do_round
meshinfo_1 | | return round(value, precision)
meshinfo_1 | | ^^^^^^^^^^^^^^^^^^^^^^^
meshinfo_1 | | TypeError: type str doesn't define round method
nodes.json had;
It also ended up in telenetry.json
meshinfo_1 | | File "templates/static/telemetry.html.j2", line 173, in block 'content'
meshinfo_1 | | {{ item.payload.temperature | round(2) }} °C
The text was updated successfully, but these errors were encountered: