Changeset 10192 in ntrip for trunk/BNC/src/pppRun.cpp


Ignore:
Timestamp:
Aug 31, 2023, 10:17:54 PM (8 months ago)
Author:
stuerze
Message:

bug fixed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/pppRun.cpp

    r10185 r10192  
    292292    // Check regarding current time
    293293    // ----------------------------
    294     if ((newObs->_time >= currentTime) ||        // future time stamp
    295         (currentTime - newObs->_time) > 60.0) {  // very old data sets
    296       delete newObs;
    297       continue;
     294    if (BNC_CORE->mode() != t_bncCore::batchPostProcessing) {
     295      if ((newObs->_time >= currentTime) ||        // future time stamp
     296          (currentTime - newObs->_time) > 60.0) {  // very old data sets
     297        delete newObs;
     298        continue;
     299      }
    298300    }
    299301
Note: See TracChangeset for help on using the changeset viewer.