feat: Honor radio's option to use Fahrenheit (#658)

This commit is contained in:
Jonathan Bennett 2023-07-16 03:46:54 -05:00 committed by GitHub
parent 04e8a6a514
commit 4e410622d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View file

@ -205,8 +205,9 @@ class UsersFragment : ScreenFragment("Users"), Logging {
holder.lastTime.text = formatAgo(n.lastHeard)
if (n.envMetricStr.isNotEmpty()) {
holder.envMetrics.text = n.envMetricStr
val envMetrics = n.envMetricStr(model.module.telemetry.environmentDisplayFahrenheit)
if (envMetrics.isNotEmpty()) {
holder.envMetrics.text = envMetrics
holder.envMetrics.visibility = View.VISIBLE
} else {
holder.envMetrics.visibility = View.GONE