You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix json unmarshal from json api to Task struct
The json from the api returns a date format like "2019-10-07T14:00:00Z"
and this makes the code to panic. This is because the CustomDate is
expecting a timestamp with the format "2006-01-02T15:04:05+00:00".
wtfutil/wtf#645