Hello,
utc_offset negative value doesn’t parse well, there is a space between - token and the number. This happens to occur in the home timeline json feed. In order to read as json, I have to find and replace the extra space.
Example: “utc_offset”: - 21600,
Expecting: “utc_offset”: -21600,
Karl…