mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-24 16:41:40 +02:00
2017-02-10 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'lib/rdlog_line.cpp' that caused the event start time to be incorrect in the 'ListLog' Web API method for times of '00:00:00.0' for 'hard' type.
This commit is contained in:
parent
0274ddd56a
commit
dcff3e6f4f
@ -15573,3 +15573,7 @@
|
||||
the 'make rpm' target.
|
||||
2017-02-08 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Incremented the package version to 2.15.2int01.
|
||||
2017-02-10 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in 'lib/rdlog_line.cpp' that caused the event start
|
||||
time to be incorrect in the 'ListLog' Web API method for times of
|
||||
'00:00:00.0' for 'hard' type.
|
||||
|
@ -1967,9 +1967,14 @@ QString RDLogLine::xml(int line) const
|
||||
ret+=" "+RDXmlField("startTime",startTime(RDLogLine::Logged).
|
||||
toString("hh:mm:ss.zzz"));
|
||||
}
|
||||
else {
|
||||
if(timeType()==RDLogLine::Hard) {
|
||||
ret+=" "+RDXmlField("startTime","00:00:00.000");
|
||||
}
|
||||
else {
|
||||
ret+=" "+RDXmlField("startTime");
|
||||
}
|
||||
}
|
||||
ret+=" "+RDXmlField("transitionType",RDLogLine::transText(transType()));
|
||||
ret+=" "+RDXmlField("cutQuantity",cutQuantity());
|
||||
ret+=" "+RDXmlField("lastCutPlayed",lastCutPlayed());
|
||||
|
Loading…
x
Reference in New Issue
Block a user