I have a Time being pulled from a server in the following JSON format:
"begins_at":"2016-04-22T08:11:07.000Z"
I am using momentjs with angular with the following filter:
{{event_details.begins_at | moment: "format": "HH:MM a"}}
I would expect the following output: 08:11 am
. Instead, I am getting: 04:04 am
. I suspect it might have something to do with timezones, but I'm not sure. How do I fix this?