Skip to content

Commit

Permalink
steamgameplayers update game names during fetching
Browse files Browse the repository at this point in the history
  • Loading branch information
Supinic committed Nov 8, 2024
1 parent 2bf29b7 commit 14d340b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/steamgameplayers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const fetchGamesData = async () => {
for (const game of response.body.response.apps) {
const row = await sb.Query.getRow("data", "Steam_Game");
await row.load(game.appid, true);
if (row.loaded) {
if (row.loaded && game.name === row.values.Name) {
continue;
}

Expand Down

0 comments on commit 14d340b

Please sign in to comment.