Fix > → >=
This commit is contained in:
parent
fa51b5c170
commit
0289df4cdd
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue