diff --git a/mythtv/libs/libmythtv/mythsystemevent.cpp b/mythtv/libs/libmythtv/mythsystemevent.cpp
index 1a4c261..988d231 100644
|
a
|
b
|
void MythSystemEventHandler::SubstituteMatches(const QStringList &tokens,
|
| 129 | 129 | // Check for some token names that we substitute one for one as |
| 130 | 130 | // %MATCH% type variables. |
| 131 | 131 | if ((*it == "CARDID") || |
| | 132 | (*it == "RECSTATUS") || |
| 132 | 133 | (*it == "HOSTNAME") || |
| 133 | 134 | (*it == "SECS") || |
| 134 | 135 | (*it == "SENDER") || |
| … |
… |
void SendMythSystemRecEvent(const QString msg, const RecordingInfo *pginfo)
|
| 321 | 322 | { |
| 322 | 323 | if (pginfo) |
| 323 | 324 | gCoreContext->SendSystemEvent( |
| 324 | | QString("%1 CARDID %2 CHANID %3 STARTTIME %4") |
| | 325 | QString("%1 CARDID %2 CHANID %3 STARTTIME %4 RECSTATUS %5") |
| 325 | 326 | .arg(msg).arg(pginfo->GetCardID()) |
| 326 | 327 | .arg(pginfo->GetChanID()) |
| 327 | | .arg(pginfo->GetRecordingStartTime(ISODate))); |
| | 328 | .arg(pginfo->GetRecordingStartTime(ISODate)) |
| | 329 | .arg(pginfo->GetRecordingStatus())); |
| 328 | 330 | else |
| 329 | 331 | LOG(VB_GENERAL, LOG_ERR, LOC + "SendMythSystemRecEvent() called with " |
| 330 | 332 | "empty RecordingInfo"); |