Skip to content

Commit

Permalink
Bugfix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Inversion NL committed Sep 30, 2016
1 parent 9791abb commit 114e642
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,7 @@ function registerTriggerAndConditionListeners() {
if (fullLogging) Homey.log("");
if (fullLogging) Homey.log("function readForecast_today");
if (value_exist(forecastData) && forecastData.length > 0) {
self.readForecast(0);
readForecast(0);
callback(null, true);
} else {
Homey.manager('speech-output').say(__("app.speech.weatherDataNotAvailable"));
Expand All @@ -1222,7 +1222,7 @@ function registerTriggerAndConditionListeners() {
if (fullLogging) Homey.log("");
if (fullLogging) Homey.log("function readForecast_tonight");
if (value_exist(forecastData) && forecastData.length > 0) {
self.readForecast(1);
readForecast(1);
callback(null, true);
} else {
Homey.manager('speech-output').say(__("app.speech.weatherDataNotAvailable"));
Expand All @@ -1234,7 +1234,7 @@ function registerTriggerAndConditionListeners() {
if (fullLogging) Homey.log("");
if (fullLogging) Homey.log("function readForecast_tomorrow");
if (value_exist(forecastData) && forecastData.length > 0) {
self.readForecast(2);
readForecast(2);
callback(null, true);
} else {
Homey.manager('speech-output').say(__("app.speech.weatherDataNotAvailable"));
Expand All @@ -1246,7 +1246,7 @@ function registerTriggerAndConditionListeners() {
if (fullLogging) Homey.log("");
if (fullLogging) Homey.log("function readForecast_tomorrowNight");
if (value_exist(forecastData) && forecastData.length > 0) {
self.readForecast(3);
readForecast(3);
callback(null, true);
} else {
Homey.manager('speech-output').say(__("app.speech.weatherDataNotAvailable"));
Expand All @@ -1258,7 +1258,7 @@ function registerTriggerAndConditionListeners() {
if (fullLogging) Homey.log("");
if (fullLogging) Homey.log("function readForecast_tomorrowNight");
if (value_exist(forecastData) && forecastData.length > 0) {
self.readForecast(5);
readForecast(5);
callback(null, true);
} else {
Homey.manager('speech-output').say(__("app.speech.weatherDataNotAvailable"));
Expand All @@ -1270,7 +1270,7 @@ function registerTriggerAndConditionListeners() {
if (fullLogging) Homey.log("");
if (fullLogging) Homey.log("function readForecast_tomorrow");
if (value_exist(forecastData) && forecastData.length > 0) {
self.readForecast(2);
readForecast(2);
callback(null, true);
} else {
Homey.manager('speech-output').say(__("app.speech.weatherDataNotAvailable"));
Expand All @@ -1282,7 +1282,7 @@ function registerTriggerAndConditionListeners() {
if (fullLogging) Homey.log("");
if (fullLogging) Homey.log("function readForecast_tomorrowNight");
if (value_exist(forecastData) && forecastData.length > 0) {
self.readForecast(3);
readForecast(3);
callback(null, true);
} else {
Homey.manager('speech-output').say(__("app.speech.weatherDataNotAvailable"));
Expand Down
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"nl": "Geeft informatie over het weer"
},

"version": "0.2.3",
"version": "0.2.4",
"compatibility": ">=0.8.29",
"category": "internet",
"author": {
Expand Down

0 comments on commit 114e642

Please sign in to comment.