We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f5f2b1 commit e0ba161Copy full SHA for e0ba161
src/tools.py
@@ -97,8 +97,8 @@ async def list_jira_issues(
97
# Add timeframe filter - check if any of the dates are within the specified timeframe
98
if timeframe > 0:
99
timeframe_condition = f"""(
100
- CREATED >= CURRENT_DATE() - INTERVAL '{timeframe} DAYS'
101
- OR UPDATED >= CURRENT_DATE() - INTERVAL '{timeframe} DAYS'
+ CREATED >= CURRENT_DATE() - INTERVAL '{timeframe} DAYS'
+ OR UPDATED >= CURRENT_DATE() - INTERVAL '{timeframe} DAYS'
102
OR RESOLUTIONDATE >= CURRENT_DATE() - INTERVAL '{timeframe} DAYS'
103
)"""
104
sql_conditions.append(timeframe_condition)
0 commit comments