mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-02 05:30:23 +02:00
Bug Fix - 'max' date
- Changed the max date from Jan 19 2038 to Dec 31 2038. This still serves the purpose, but avoids the UTC/EST/CEST timezon problems we have seen (thanks to Federico Hernandez).
This commit is contained in:
parent
9aed6ec228
commit
c787e67d9c
1 changed files with 1 additions and 1 deletions
|
@ -1501,7 +1501,7 @@ std::string handleReportCalendar ()
|
||||||
|
|
||||||
if (getpendingdate == true) {
|
if (getpendingdate == true) {
|
||||||
// Find the oldest pending due date.
|
// Find the oldest pending due date.
|
||||||
Date oldest (1,19,2038);
|
Date oldest (12,31,2037);
|
||||||
foreach (task, tasks)
|
foreach (task, tasks)
|
||||||
{
|
{
|
||||||
if (task->getStatus () == Task::pending)
|
if (task->getStatus () == Task::pending)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue