Noticed a bug while implementing recent games. Here’s a little snippet of the JSON affected by the bug
{
…
“MatchCompletedDate”: {
“ISO8601Date”: “2015-11-11T00:00:00Z”
},
…
}
As you can see, the ISO8601 date is missing the hour, minute, and second fields. It happens with every single match for every single player.
Here’s what should be happening.
{
…
“MatchCompletedDate”: {
“ISO8601Date”: “2015-11-11T15:34:55Z” // what this should look like if we wanna follow good practice
},
…
}
Here’s some compelling reasons why this is really annoying
- It kinda makes the date rather useless, especially when someone plays 20+ games on the same day. Granted, they’re sorted in chronological order (thank the mantle) - Users like additional details, such as time and whatnot - I can’t think of a single good reason why this should not be addressed
