Skip to content

Commit

Permalink
only show set requestors in set requestors list (#1842)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamiras committed Sep 7, 2023
1 parent 6b2550c commit 705c3e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/Helpers/database/set-request.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ function getSetRequestorsList(int $gameID, bool $getEmailInfo = false): array
FROM
SetRequest
WHERE
GameID = $gameID";
GameID = $gameID
AND type='" . UserGameListType::AchievementSetRequest . "'";
}

$dbResult = s_mysql_query($query);
Expand Down

0 comments on commit 705c3e5

Please sign in to comment.