Changeset 6767 in ntrip


Ignore:
Timestamp:
Apr 5, 2015, 10:38:51 AM (9 years ago)
Author:
weber
Message:

Notice advisory for first stream recovery modified

File:
1 edited

Legend:

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

    r6758 r6767  
    303303                    + ": Recovery threshold exceeded, outage ended "
    304304                    + _endDateOut + " " + _endTimeOut).toAscii(), true));
    305       callScript(("End_Outage "
    306                     + _endDateOut + " " + _endTimeOut + " Begin was "
    307                     + _begDateOut + " " + _begTimeOut).toAscii());
     305      if ( _begDateOut != "" && _begTimeOut != "" ) {
     306        callScript(("End_Outage "
     307                      + _endDateOut + " " + _endTimeOut + " Begin was "
     308                      + _begDateOut + " " + _begTimeOut).toAscii());
     309      }
     310      else {
     311        callScript(("End_Outage "
     312                      + _endDateOut + " " + _endTimeOut).toAscii());
     313      }
    308314    }
    309315  }
Note: See TracChangeset for help on using the changeset viewer.