Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
austin-carnahan committed Mar 19, 2021
1 parent b5c784b commit 2c57141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/providerController.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ exports.provider_search = async function(req, res) {
continue;
}
if(param == "vaccine_available") {
filter[param] = Boolean(req.query[param]); // $geoNear query param wont coerce types in search so we have to do it manually?
filter[param] = Boolean(req.query[param]); // $geoNear query param wont coerce types so we have to do it manually?
continue; // weird bc it totally works in the reg filter query
}
filter[param] = req.query[param];
Expand Down

0 comments on commit 2c57141

Please sign in to comment.