Skip to content
This repository was archived by the owner on Jun 8, 2023. It is now read-only.

Commit e7d6d93

Browse files
committed
Make line labels match their content
Based on the actual values reported by this script / darksky, it seems like "next hour" should really say "today" and "today" should really say "this week"
1 parent f72b9ac commit e7d6d93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/scripts/darksky.coffee

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ darkSkyMe = (msg, lat, lng, cb) ->
5252
return
5353

5454
response = "Currently: #{result.currently.summary} (#{result.currently.temperature}°)"
55-
response += "\nNext hour: #{result.hourly.summary}"
56-
response += "\nToday: #{result.daily.summary}"
55+
response += "\nToday: #{result.hourly.summary}"
56+
response += "\nComing week: #{result.daily.summary}"
5757
cb response

0 commit comments

Comments
 (0)