Bungie-net / api

Resources for the Bungie.net API
Other
1.22k stars 92 forks source link

Post Game Activity Report with missing player details #1297

Open mikechambers opened 3 years ago

mikechambers commented 3 years ago

https://stats.bungie.net/Platform/Destiny2/Stats/PostGameCarnageReport/6898908566/

Note, all of the player entries are missing data:

                "player": {
                    "destinyUserInfo": {
                        "crossSaveOverride": 0,
                        "isPublic": false,
                        "membershipType": 0,
                        "membershipId": "4611686018467967001"
                    },
                    "classHash": 0,
                    "raceHash": 0,
                    "genderHash": 0,
                    "characterLevel": 50,
                    "lightLevel": 1058,
                    "emblemHash": 4132147348
                },

Specifically values are not set, and displayName are missing.

Data should look similar to:

                "player": {
                    "destinyUserInfo": {
                        "iconPath": "/common/destiny2_content/icons/b3468b9d7b2118c8be79e536cb009633.jpg",
                        "crossSaveOverride": 0,
                        "applicableMembershipTypes": [
                            3
                        ],
                        "isPublic": true,
                        "membershipType": 3,
                        "membershipId": "4611686018467967001",
                        "displayName": "Mechanical Neko-san"
                    },
                    "characterClass": "Warlock",
                    "classHash": 2271682572,
                    "raceHash": 898834093,
                    "genderHash": 2204441813,
                    "characterLevel": 50,
                    "lightLevel": 1058,
                    "emblemHash": 4132147348
                },

Note, there is also a player in that report with an Emblem id of 0.

t3rr11 commented 3 years ago

I first noticed this issue back on this PGCR number: 6841387294. It happened for me during PGCR maintenance time. If that helps any.