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 3704573 commit b5a6765Copy full SHA for b5a6765
invokeai/app/services/image_records/image_records_sqlite.py
@@ -196,9 +196,13 @@ def get_many(
196
# Search term condition
197
if search_term:
198
query_conditions += """--sql
199
- AND images.metadata LIKE ?
+ AND (
200
+ images.metadata LIKE ?
201
+ OR images.created_at LIKE ?
202
+ )
203
"""
204
query_params.append(f"%{search_term.lower()}%")
205
+ query_params.append(f"%{search_term.lower()}%")
206
207
if starred_first:
208
query_pagination = f"""--sql
0 commit comments