Skip to content

Commit

Permalink
fix: queryFormatter
Browse files Browse the repository at this point in the history
  • Loading branch information
uCryNet committed Oct 3, 2023
1 parent b5288ed commit 6a33308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/routers/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const queryFormatter = (req) => {
...others,
};
if (req.query.organization_id) {
query.organization_id = req.query.organization_id;
query.organization_id = JSON.parse(req.query.organization_id);
}

if (req.query.captures_amount_min) {
Expand Down

0 comments on commit 6a33308

Please sign in to comment.