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
awaitdb.raw('UPDATE player_computed_mmr SET computed_mmr = ? WHERE account_id = ?',[newRating,p.account_id]);
53
+
awaitdb.raw('INSERT INTO player_computed_mmr(account_id, computed_mmr) VALUES(?, ?) ON CONFLICT DO UPDATE SET computed_mmr = EXCLUDED.computed_mmr',[newRating,p.account_id]);
54
54
}
55
55
// Delete row
56
56
awaitdb.raw('DELETE FROM rating_queue WHERE id = ?',row.id);
0 commit comments