Skip to content

Commit

Permalink
Removed MS tracking id from API url
Browse files Browse the repository at this point in the history
  • Loading branch information
NikkelM committed Jan 2, 2023
1 parent 158cf8a commit d36c830
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ async function fetchGameIDs(passType, market) {

async function fetchGameProperties(gameIds, passType, market) {
console.log(`Fetching game properties for ${gameIds.length} ${passType} games for market "${market}"...`);
return await fetch(`https://displaycatalog.mp.microsoft.com/v7.0/products?bigIds=${gameIds}&market=${market}&languages=en-us&MS-CV=DGU1mcuYo0WMMp`)
return await fetch(`https://displaycatalog.mp.microsoft.com/v7.0/products?bigIds=${gameIds}&market=${market}&languages=en-us`)
.then((response) => response.json())
.then((data) => {
if (CONFIG.keepCompleteProperties) {
Expand Down

0 comments on commit d36c830

Please sign in to comment.