Skip to content

Commit

Permalink
updated the condition;
Browse files Browse the repository at this point in the history
  • Loading branch information
ranjan-stha committed Sep 19, 2023
1 parent 014d674 commit e861444
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/tasks/queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
LEFT JOIN lead_leadpreview lp on lp.lead_id = ll.id
WHERE
ll.project_id={} and
ll.created_at >= '{}'
ll.created_at > '{}'
order by ll.created_at asc
"""

Expand Down Expand Up @@ -172,7 +172,7 @@
analysis_framework_exportable ex ON ex.id = ee.exportable_id
where
e.project_id = {} and
e.created_at >= '{}' and
e.created_at > '{}' and
e.excerpt is not NULL and
e.excerpt <> ''
) res
Expand Down

0 comments on commit e861444

Please sign in to comment.