mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
- weather: better naming for update cycle
Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
@@ -40,7 +40,7 @@
|
|||||||
|
|
||||||
#include "weather.h"
|
#include "weather.h"
|
||||||
|
|
||||||
#define MINUTES 15*60
|
#define UPDATE_CYCLE 15 // minutes
|
||||||
|
|
||||||
CWeather* CWeather::getInstance()
|
CWeather* CWeather::getInstance()
|
||||||
{
|
{
|
||||||
@@ -81,7 +81,7 @@ void CWeather::setCoords(std::string new_coords, std::string new_city)
|
|||||||
bool CWeather::checkUpdate(bool forceUpdate)
|
bool CWeather::checkUpdate(bool forceUpdate)
|
||||||
{
|
{
|
||||||
time_t current_time = time(NULL);
|
time_t current_time = time(NULL);
|
||||||
if (forceUpdate || (difftime(current_time,last_time) > MINUTES))
|
if (forceUpdate || (difftime(current_time, last_time) > (UPDATE_CYCLE * 60)))
|
||||||
return GetWeatherDetails();
|
return GetWeatherDetails();
|
||||||
else
|
else
|
||||||
return false;
|
return false;
|
||||||
|
Reference in New Issue
Block a user