Closed aviivgi closed 6 years ago
@aviivgi It appears that the MLS you're querying is advertising some field as having type Date
but is actually sending full date time strings. Can you confirm this?
The Date
parser expects values in the format 2018-09-05
in accordance with the RETS standard, but based on your exception message you're receiving 2018-09-05T00:00:00.000
. We could do something like strip off the extra characters, or just try to parse and return the date time.
@martinxsliu Thank you so much, you're on spot! They've changed the 'datetime' to a 'timestamp'.
Executing the following line:
Generates the following error:
Thanks!