From 114e642f564751bcbf9608a5f8bb37fdae084fe9 Mon Sep 17 00:00:00 2001 From: Inversion NL Date: Fri, 30 Sep 2016 18:26:16 +0200 Subject: [PATCH] Bugfix typo --- app.js | 14 +++++++------- app.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app.js b/app.js index 8c0e95e..8194c5b 100644 --- a/app.js +++ b/app.js @@ -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")); @@ -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")); @@ -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")); @@ -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")); @@ -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")); @@ -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")); @@ -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")); diff --git a/app.json b/app.json index fe182cd..c605a5b 100644 --- a/app.json +++ b/app.json @@ -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": {