-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Scheduler::UpdateManuals(): prevent scheduling recordings before the …
…given start date and rewrite the confusing code that calculated the start times. I thought about adding something to prevent scheduling recordings in the past, but this function doesn’t have enough information to determine that. ` if (MythDate::current().toLocalTime().time() > starttime) { offset++; } ` The above code would prevent scheduling recordings that should have already started. However, the end time may still be in the future, so it should be scheduled in that case. Unfortunately, the startdate, starttime, enddate, and endtime values do not account for starting/ending the recording early/late (8 hours in either direction from the start and end), so this cannot be determined from the information the function has. Therefore, this function will continue to schedule recordings that may be entirely in the past.
- Loading branch information
1 parent
b64cda9
commit c277acd
Showing
1 changed file
with
31 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters