Skip to content

Commit

Permalink
Fixed OneBusAway#1187 - Refactor
Browse files Browse the repository at this point in the history
Signed-off-by: Amr Hossam <amrhossam.dev@gmail.com>
  • Loading branch information
amrhossamdev committed Mar 29, 2024
1 parent 333e0c3 commit 8300479
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2013,7 +2013,7 @@ private void setWeatherData() {
// Show weather state when click.
weatherView.setOnClickListener(view -> {
if (weatherSummary != null) {
Toast.makeText(getApplicationContext(), weatherResponse.getCurrent_forecast().getSummary().trim(), Toast.LENGTH_SHORT).show();
Toast.makeText(getApplicationContext(), weatherSummary.trim(), Toast.LENGTH_SHORT).show();
}
});
}
Expand Down

0 comments on commit 8300479

Please sign in to comment.