From 478c0706abae3356f8da516594363376838a8058 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Thu, 12 Mar 2020 15:00:36 +0100 Subject: [PATCH] Notify with post_data (full json) --- python/ttnv2receiver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ttnv2receiver.py b/python/ttnv2receiver.py index 0b61803..0dbf178 100644 --- a/python/ttnv2receiver.py +++ b/python/ttnv2receiver.py @@ -31,7 +31,7 @@ class testHTTPServer_RequestHandler(BaseHTTPRequestHandler): # And insert into the db lorautil.db_insert_json("ttn", post_data, payload, deveui) - lorautil.db_notify("ttn", payload, deveui) + lorautil.db_notify("ttn", post_data, deveui) def payload_hex(self, data): mydict = lorautil.jsonToDict(data)