Skip to content

Commit 0df59f3

Browse files
authored
Fix to restore functionality of "item condition" filter
1 parent 31b1a5d commit 0df59f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pyVinted/items/items.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def parseUrl(self, url, nbrItems=20, page=1, time=None) -> Dict:
7171
map(str, [tpl[1] for tpl in querys if tpl[0] == "material_ids[]"])
7272
),
7373
"status_ids": ",".join(
74-
map(str, [tpl[1] for tpl in querys if tpl[0] == "status[]"])
74+
map(str, [tpl[1] for tpl in querys if tpl[0] == "status_ids[]"])
7575
),
7676
"country_ids": ",".join(
7777
map(str, [tpl[1] for tpl in querys if tpl[0] == "country_ids[]"])

0 commit comments

Comments
 (0)