4 Commits

Author SHA1 Message Date
etienne-hd
00cf534191 1.0.10 2025-10-11 13:54:26 +02:00
Étienne Hodé
8a74cde3b1 Merge pull request #5 from Soopic/main
Fix KeyError when using shippable=True
2025-10-11 13:48:39 +02:00
Soupic
d24b1cc0e6 Merge pull request #1 from Soopic/shippable-bug
shippable bug
2025-10-11 12:31:50 +02:00
Lucas
6ef01383f0 shippable-bug-fixed 2025-10-11 12:22:12 +02:00
3 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
## 1.0.10
### Fix
* KeyError when using shippable=True (#5)
## 1.0.9
### Fix
* Fixed SSL verification issue during Leboncoin cookie initialization.

View File

@@ -1,6 +1,6 @@
[project]
name = "lbc"
version = "1.0.9"
version = "1.0.10"
description = "Unofficial client for Leboncoin API"
readme = "README.md"
license = {text = "MIT"}

View File

@@ -251,7 +251,7 @@ def build_search_payload_with_args(
payload["filters"]["keywords"]["type"] = "subject"
if shippable:
payload["filters"]["locations"]["shippable"] = True
payload["filters"]["location"]["shippable"] = True
if kwargs:
for key, value in kwargs.items():