Skip to content

Commit

Permalink
Update player driver to correct the region variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Orloxx23 committed Apr 25, 2024
1 parent 47d8cd3 commit b0c55d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/playersController.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const getPlayers = async (req, res) => {
const event_series = req.query.event_series || "all";
const event = req.query.event || "all";
const country = req.query.country || "all";
const region = req.query.regions || "all";
const region = req.query.region || "all";
const minrounds = req.query.minrounds || 200;
const minrating = req.query.minrating || 1550;
const agent = req.query.agent || "all";
Expand Down

0 comments on commit b0c55d4

Please sign in to comment.