From 0289df4cddf23ce7b20b581cb3491709c517595c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Bastian?= Date: Mon, 28 Nov 2016 18:53:49 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20>=20=E2=86=92=20>=3D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dataStore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dataStore.cpp b/dataStore.cpp index d48e6bb..c71301b 100644 --- a/dataStore.cpp +++ b/dataStore.cpp @@ -27,7 +27,7 @@ void DataStore::update() { handleExpire(evt.id, evt.seqno); } if(hasOwnData) { - if(time(NULL) - recvTime[myData] > csts::TIME_REPUBLISH_DATA) + if(time(NULL) - recvTime[myData] >= csts::TIME_REPUBLISH_DATA) handleRepublish(myData); } }