Skip to content

Commit ccc6e12

Browse files
committed
fix: fix dedupe filter
1 parent ad0f16c commit ccc6e12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/btrixcloud/crawlconfigs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ async def get_crawl_configs(
870870
aggregate.extend([{"$match": {"firstSeed": first_seed}}])
871871

872872
if dedupe_coll_id:
873-
aggregate.extend([{"$match": {"dedupeCollId": first_seed}}])
873+
aggregate.extend([{"$match": {"dedupeCollId": dedupe_coll_id}}])
874874

875875
if sort_by:
876876
if sort_by not in ALLOWED_SORT_KEYS:

0 commit comments

Comments
 (0)