diff --git a/exec/load/openweathermap.js b/exec/load/openweathermap.js index 369cfc4227fd0c1f32f25c366cf9ac916b0dbded..3d612a6e1f4bdad6941ec43a21c21b5b86240575 100644 --- a/exec/load/openweathermap.js +++ b/exec/load/openweathermap.js @@ -11,7 +11,11 @@ load('modopts.js'); function OpenWeatherMap() { this.settings = get_mod_options('openweathermap'); - if (!this.settings.rate_window) this.settings.rate_window = 60; // Seconds + + if(this.settings == undefined) { + this.settings = {}; + } + if (!this.settings.rate_window) this.settings.rate_window = 60; // Seconds if (!this.settings.rate_limit) this.settings.rate_limit = 60; // Requests per window if (!this.settings.data_refresh) this.settings.data_refresh = 7200; // Seconds this.rate_file = new File(system.temp_dir + 'openweathermap_rate.json');