Skip to content

Commit

Permalink
Hotfix product filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgarde committed Jun 20, 2024
1 parent d4138ed commit 450cd7f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ public List<L2RasterProduct> findByUser(
JOIN \"ProductHistory\" ON \"ProductHistory\".\"rasterProductId\" = \"L2RasterProducts\".id
WHERE
(:cycle is NULL OR \"cycle\" = :cycle) AND
(:pass is NULL OR \"cycle\" = :pass) AND
(:scene is NULL OR \"cycle\" = :scene) AND
(:pass is NULL OR \"pass\" = :pass) AND
(:scene is NULL OR \"scene\" = :scene) AND
(:outputGranuleExtentFlag is NULL OR \"outputGranuleExtentFlag\" = :outputGranuleExtentFlag) AND
(:outputSamplingGridType is NULL OR \"outputSamplingGridType\" = :outputSamplingGridType) AND
(:rasterResolution is NULL OR \"rasterResolution\" = :rasterResolution) AND
Expand Down

0 comments on commit 450cd7f

Please sign in to comment.