Skip to content

Commit

Permalink
fix: various fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MagicTheDev committed Apr 25, 2024
1 parent c64cdf0 commit 26527af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gamewide/war/track.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ async def fetch(url, session: aiohttp.ClientSession, headers, tag, throttler: Th
one_week_ago = int(right_now)
pipeline = [{"$match": {"$and": [
{"endTime": {"$gte": one_week_ago}},
{"data": {"$ne": None}}
{"data": {"$eq": None}}
]}}, {"$group": {"_id": "$war_id"}}]
results = await db_client.clan_wars.aggregate(pipeline).to_list(length=None)
for result in results:
Expand Down

0 comments on commit 26527af

Please sign in to comment.