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
Copy file name to clipboardExpand all lines: store/getGcData.ts
+2-5Lines changed: 2 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -95,12 +95,9 @@ async function saveGcData(
95
95
);
96
96
constplayers=data.match.players.map(
97
97
(p: any,i: number): GcPlayer=>({
98
-
// NOTE: account ids are not anonymous in this call so we don't include it in the data to insert
99
-
// TODO We could start storing this data but then the API also needs to respect the user's match history setting
100
-
// If we just enable this alone we'll write partial rows with only gcdata to the player_caches table
101
-
// Fix: in upsertPlayerCaches force only reading account_id from pgroup, not the match object itself
98
+
// NOTE: account ids are not anonymous in this call
102
99
// Also, we probably want to queue a job post-parse that reads back the match data and updates all player_caches now that we have identity and parsed data
0 commit comments