Closed malhal closed 7 years ago
The bug was CKRecord.swift line 391 the TIMESTAMP should be milliseconds, from the docs
Date/Time Number A date or time value. Represented as a number in milliseconds since epoch.
Fix is to multiply timeIntervalSince1970 by 1000
movieRecord["timestamp"] = NSDate()
Saving results in:
I would guess the NSDate isn't being converted to the correct JSON.