Skip to content

Commit

Permalink
Missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
jjrom committed Apr 29, 2024
1 parent ba8a3de commit eff1d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/resto/core/api/FeaturesAPI.php
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ public function getFeaturesInCollection($params)

// This should return HTTP 400 but we discard it instead otherwise it brokes pystac requests
if (isset($params['collections'])) {
unset($params['collections'])
unset($params['collections']);
//return RestoLogUtil::httpError(400, 'You cannot specify a list of collections on a single collection search');
}

Expand Down

0 comments on commit eff1d52

Please sign in to comment.