Skip to content

Commit

Permalink
Daily summary pop is max instead of once
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtakac committed May 26, 2024
1 parent b9ebd29 commit adec818
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class GetDailySummary(
tempNow = futureTempDays[i][now]?.temperature,
min = futureTempDays[i].minimum,
max = futureTempDays[i].maximum,
pop = popDays[i].once.takeIf { it.value > 0 },
pop = popDays[i].maximum.takeIf { it.value > 0 },
desc = descDays[i].day ?: descDays[i].night!!
)
)
Expand Down

0 comments on commit adec818

Please sign in to comment.