Skip to content

Commit

Permalink
Fix bug in timestamp of weather APRS messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
VanceVagell committed Nov 21, 2024
1 parent 3545cbc commit 94ed526
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ public void setTemperature(double temperature) {
if (null == textViewTemperature) {
return;
}
textViewTimestamp.setText(String.format(Locale.US, "%.1f", temperature));
textViewTemperature.setText(String.format(Locale.US, "%.1f", temperature));
}

public void setHumidity(double humidity) {
Expand Down

0 comments on commit 94ed526

Please sign in to comment.