The dateToString function in the Mapper files for both iOS and Android uses 12 hour formatting without including an AM or PM indicator. Because of this, any channel created or updated after noon appears to have been made 12 hours earlier. Changing "yyyy-MM-dd hh:mm:ss" to "yyyy-MM-dd HH:mm:ss" fixes the problem.
The
dateToString
function in theMapper
files for both iOS and Android uses 12 hour formatting without including an AM or PM indicator. Because of this, any channel created or updated after noon appears to have been made 12 hours earlier. Changing"yyyy-MM-dd hh:mm:ss"
to"yyyy-MM-dd HH:mm:ss"
fixes the problem.