Fixed wrong $in usage

This commit is contained in:
2023-08-30 13:00:21 +02:00
parent c303f62005
commit 42ca71aa3e
2 changed files with 9 additions and 17 deletions

View File

@@ -39,7 +39,7 @@ async def remind(app: PyroClient) -> None:
entries = await col_entries.find(
{
"locations": {"$in": location.id},
"locations": location.id,
"date": user_date.replace(hour=0, minute=0),
}
).to_list()