mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-17 06:32:36 +02:00
2017-07-28 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'lib/rdevent_line.cpp' that caused embedded traffic import events to be assigned incorrect link parameters when scheduled immediately after a voice track.
This commit is contained in:
parent
9a8cea6f66
commit
e344975433
@ -15903,3 +15903,7 @@
|
||||
<startPoint> and <endPoint> values to the returned.
|
||||
2017-07-18 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Incremented the package version to 2.16.0int06_rfa01.
|
||||
2017-07-28 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in 'lib/rdevent_line.cpp' that caused embedded traffic
|
||||
import events to be assigned incorrect link parameters when scheduled
|
||||
immediately after a voice track.
|
||||
|
@ -1040,8 +1040,14 @@ bool RDEventLine::linkLog(RDLogEvent *e,int next_id,const QString &svcname,
|
||||
logline->setTransType(trans_type);
|
||||
logline->setEventLength(event_length);
|
||||
logline->setLinkEventName(event_nested_event);
|
||||
logline->setLinkStartTime(link_logline->linkStartTime());
|
||||
logline->setLinkLength(link_logline->linkLength());
|
||||
if((!q->value(12).isNull())&&(!q->value(13).isNull())) {
|
||||
logline->setLinkStartTime(q->value(12).toTime());
|
||||
logline->setLinkLength(q->value(13).toInt());
|
||||
}
|
||||
else {
|
||||
logline->setLinkStartTime(link_logline->linkStartTime());
|
||||
logline->setLinkLength(link_logline->linkLength());
|
||||
}
|
||||
logline->setLinkStartSlop(link_logline->linkStartSlop());
|
||||
logline->setLinkEndSlop(link_logline->linkEndSlop());
|
||||
logline->setLinkId(link_logline->linkId());
|
||||
|
@ -966,8 +966,8 @@ bool RDSvc::linkLog(RDSvc::ImportSource src,const QDate &date,
|
||||
emit generationProgress(24);
|
||||
delete src_event;
|
||||
delete dest_event;
|
||||
// printf("Import Table: %s\n",(const char *)import_name);
|
||||
|
||||
// printf("Import Table: %s\n",(const char *)import_name);
|
||||
sql=QString().sprintf("drop table `%s`",(const char *)import_name);
|
||||
q=new RDSqlQuery(sql);
|
||||
delete q;
|
||||
|
Loading…
x
Reference in New Issue
Block a user