Skip to content

Commit

Permalink
fixed type in request call
Browse files Browse the repository at this point in the history
  • Loading branch information
jclarke0000 committed Dec 14, 2018
1 parent 83cdb61 commit 946ee89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node_helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module.exports = NodeHelper.create({
// "&exclude=minutely"

// console.log("[MMM-DarkSkyForecast] Getting data: " + url);
request({url: url, methid: "GET"}, function( error, response, body) {
request({url: url, method: "GET"}, function( error, response, body) {

if(!error && response.statusCode == 200) {

Expand Down

0 comments on commit 946ee89

Please sign in to comment.