Fix POST returning empty JSON body, v1.0.8
This commit is contained in:
@@ -20,4 +20,7 @@ class HttpClient:
|
||||
kwargs.setdefault("timeout", 30)
|
||||
r = self._session.post(f"{self._endpoint}{path}", json=data, **kwargs)
|
||||
r.raise_for_status()
|
||||
return r.json()
|
||||
try:
|
||||
return r.json()
|
||||
except Exception:
|
||||
return {}
|
||||
|
||||
Reference in New Issue
Block a user