Skip to content

Commit 9368acd

Browse files
CrankyChiliBoris-code
authored andcommitted
bugfix: item 不同字段相同值导致指纹误判
1 parent 123171c commit 9368acd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

feapder/network/item.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def fingerprint(self):
131131
for key, value in self.to_dict.items():
132132
if value:
133133
if (self.unique_key and key in self.unique_key) or not self.unique_key:
134-
args.append(str(value))
134+
args.append(key + str(value))
135135

136136
if args:
137137
args = sorted(args)

0 commit comments

Comments
 (0)