Fix LBTC API call for sending messages

This commit is contained in:
2022-05-14 20:28:09 +01:00
parent da65d6168b
commit 06af9449fd

View File

@@ -396,7 +396,7 @@ class LocalBitcoins:
""" """
payload = {"msg": msg} payload = {"msg": msg}
return self._api_call( return self._api_call(
api_method=f"contact_message_post/{trade_id}/", api_method=f"api/contact_message_post/{trade_id}/",
http_method="POST", http_method="POST",
query_values=payload, query_values=payload,
) )