diff --git a/app/routers/events.py b/app/routers/events.py index 7c8b3a7..7cfa3ec 100644 --- a/app/routers/events.py +++ b/app/routers/events.py @@ -192,6 +192,9 @@ async def search_events( if text_filter: filters.append(text_filter) + if tags is not None: + filters.append({"tags": {"$in": tags}}) + # Combine filters object_search = {"$and": filters} if filters else {}