Right now, in the context, we define date variables as being unsigned long values, which is incorrect.
As stated in the issue about creating the context, dates are stored as their UNIX timestamp value. That means that, being stored in an unsigned variable, all dates before the 1st of January 1970 will not be interpreted correctly.
Right now, in the context, we define date variables as being
unsigned longvalues, which is incorrect.As stated in the issue about creating the context, dates are stored as their UNIX timestamp value. That means that, being stored in an unsigned variable, all dates before the 1st of January 1970 will not be interpreted correctly.