Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ weatherMap.getLocationWeather(latitude, longitude, new WeatherCallback() {
}
});
```
To get **Forecast** use this in `Activity` also you need specify `index` to get the specific hour of [3 hour Forecast](http://openweathermap.org/forecast5):
To get **Forecast** use this in `Activity` also you need specify `index` to get the specific hour of [3 hour Forecast](https://openweathermap.org/forecast5):

**By City Name:**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
public class ApiClient {

private static ApiClient uniqInstance;
private final String URL_LIVE = "http://api.openweathermap.org/data/2.5/";
private final String URL_LIVE = "https://api.openweathermap.org/data/2.5/";

private WeatherInterface weatherInterface;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public String getIcon() {
}

public String getIconLink() {
return "http://openweathermap.org/img/w/" + icon + ".png";
return "https://openweathermap.org/img/w/" + icon + ".png";
}

public void setIcon(String icon) {
Expand Down