Minor updates to plugin downloading and weather

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti 2012-09-04 09:40:45 -04:00
parent 26db4b2cd9
commit 6da0ec4170

View file

@ -31,6 +31,11 @@ namespace MediaBrowser.Controller.Weather
public async Task<WeatherInfo> GetWeatherInfoAsync(string zipCode)
{
if (string.IsNullOrWhiteSpace(zipCode))
{
return null;
}
int numDays = 5;
string apiKey = "24902f60f1231941120109";