From 06af9449fdc31aff02d63620affed3ee0fdaf64f Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Sat, 14 May 2022 20:28:09 +0100 Subject: [PATCH] Fix LBTC API call for sending messages --- handler/lib/localbitcoins_py.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handler/lib/localbitcoins_py.py b/handler/lib/localbitcoins_py.py index feb879a..c4675a2 100644 --- a/handler/lib/localbitcoins_py.py +++ b/handler/lib/localbitcoins_py.py @@ -396,7 +396,7 @@ class LocalBitcoins: """ payload = {"msg": msg} return self._api_call( - api_method=f"contact_message_post/{trade_id}/", + api_method=f"api/contact_message_post/{trade_id}/", http_method="POST", query_values=payload, )