node-red-node-openweathermap
Advanced tools
Comparing version 0.3.0 to 0.3.1
{ | ||
"name": "node-red-node-openweathermap", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "A Node-RED node that gets the weather report from openweathermap", | ||
@@ -5,0 +5,0 @@ "dependencies": { |
/** | ||
* Copyright 2014.2015 IBM Corp. | ||
* Copyright 2014,2020 IBM Corp. | ||
* | ||
@@ -167,3 +167,3 @@ * Licensed under the Apache License, Version 2.0 (the "License"); | ||
RED.nodes.createNode(this, n); | ||
this.wtype = n.wtype; | ||
this.wtype = n.wtype || "current"; | ||
this.repeat = 600000; // every 10 minutes | ||
@@ -222,3 +222,3 @@ this.interval_id = null; | ||
RED.nodes.createNode(this,n); | ||
this.wtype = n.wtype; | ||
this.wtype = n.wtype || "current"; | ||
var node = this; | ||
@@ -225,0 +225,0 @@ var city; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
55085