mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-12 07:35:55 +01:00
2020-02-21 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdlogmanager(1) that caused trailer whitespace to be generated in the 'EXT_DATA', 'EXT_EVENT', 'EXT_ANNC_TYPE' and 'EXT_CART_NAME' log fields when importing from a CounterPoint format log.
This commit is contained in:
@@ -1191,10 +1191,10 @@ bool RDEventLine::linkLog(RDLogEvent *e,RDLog *log,const QString &svcname,
|
||||
logline->setExtStartTime(QTime().addSecs(3600*start_start_hour+
|
||||
q->value(1).toInt()));
|
||||
logline->setExtLength(q->value(2).toInt());
|
||||
logline->setExtData(q->value(3).toString());
|
||||
logline->setExtEventId(q->value(4).toString());
|
||||
logline->setExtAnncType(q->value(5).toString());
|
||||
logline->setExtCartName(q->value(6).toString());
|
||||
logline->setExtData(q->value(3).toString().trimmed());
|
||||
logline->setExtEventId(q->value(4).toString().trimmed());
|
||||
logline->setExtAnncType(q->value(5).toString().trimmed());
|
||||
logline->setExtCartName(q->value(6).toString().trimmed());
|
||||
logline->setEventLength(event_length);
|
||||
logline->setLinkEventName(event_name);
|
||||
logline->setLinkStartTime(link_logline->linkStartTime());
|
||||
|
||||
Reference in New Issue
Block a user