I'm getting a UTC time from a website in one of my apps, and simply want to convert it to be displayed in CIQ ( it's unix based on epoch "seconds").
I convert it to a moment using "var now = Calendar.moment( {:seconds=>timestamp} );"
and when I go to display it using the .info method in Gregorian, the year and month are correct, but DOW and day are one behind, and the time is always "17:00:00".
If I mod the number with 86440 (sec's in a day), and just look at the times, it's STILL 17:00:00!
This isn't a local vs UTC issue, as UTC is ahead of me, not behind.
Is this a bug, or just me being stupid?