Bug #1990
Post processor startdate and enddate error
Start date:
2014-03-11
Due date:
% Done:
100%
Estimated time:
Found in version:
3.9.383
Affected Versions:
Description
Hi!
Incorrect addition of the extra time
now:
snprintf(start, sizeof(start), "%"PRItime_t, de->de_start - de->de_start_extra);
snprintf(stop, sizeof(stop), "%"PRItime_t, de->de_stop + de->de_stop_extra);
correct:
snprintf(start, sizeof(start), "%"PRItime_t, de->de_start - (de->de_start_extra * 60));
snprintf(stop, sizeof(stop), "%"PRItime_t, de->de_stop + (de->de_stop_extra * 60));
History
Updated by Jaroslav Kysela over 10 years ago
- Status changed from New to Fixed
- % Done changed from 0 to 100
Applied in changeset commit:tvheadend|8f00f09837a13c92490a4f6d17190b01192cd82d.