summaryrefslogtreecommitdiffstats
path: root/weather
diff options
context:
space:
mode:
Diffstat (limited to 'weather')
-rw-r--r--weather/weather.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/weather/weather.go b/weather/weather.go
index 9cc6ebf..2eb2bf7 100644
--- a/weather/weather.go
+++ b/weather/weather.go
@@ -9,6 +9,7 @@ import (
"time"
"ricketyspace.net/peach/nws"
+ "ricketyspace.net/peach/photon"
"ricketyspace.net/peach/version"
)
@@ -19,6 +20,7 @@ type Weather struct {
Now WeatherNow
Q2HTimeline WeatherTimeline // Q2H forecast of the next 12 hours.
BiDailyTimeline WeatherTimeline // BiDaily forecast for the next 3 days.
+ SearchEnabled bool
}
type WeatherNow struct {
@@ -106,6 +108,7 @@ func NewWeather(lat, lng float32) (*Weather, error, int) {
w.BiDailyTimeline = WeatherTimeline{
Periods: bdPeriods,
}
+ w.SearchEnabled = photon.Enabled()
return w, nil, 200
}