Skip to content

Commit

Permalink
Merge v1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrossman committed Oct 2, 2020
2 parents 5c80d0e + 783b62e commit 31a6e2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ForecasWatch 2",
"author": "Matt Rossman",
"version": "1.13.0",
"version": "1.14.0",
"keywords": ["pebble-app"],
"private": true,
"dependencies": {},
Expand Down
2 changes: 1 addition & 1 deletion src/pkjs/weather/provider.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ WeatherProvider.prototype.withSunEvents = function(lat, lon, callback) {

WeatherProvider.prototype.withCityName = function(lat, lon, callback) {
// callback(cityName)
var url = 'http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/reverseGeocode?f=json&langCode=EN&location='
var url = 'https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/reverseGeocode?f=json&langCode=EN&location='
+ lon + ',' + lat;
request(url, 'GET', function (response) {
var address = JSON.parse(response).address;
Expand Down

0 comments on commit 31a6e2d

Please sign in to comment.