json_object

This commit is contained in:
CHIEFSOFT\ameye
2025-08-27 21:41:29 -04:00
parent 709596debd
commit 353b6e4b52
+2 -1
View File
@@ -244,7 +244,8 @@ class SubscriptionService(BaseService):
def subscription_webhook_start(data):
try:
with db.session.begin():
for key, value in data.items():
json_object = json.loads(data)
for key, value in json_object.items():
logger.info(f"^^^^^^^^^^ Key: {key}, Value: {value}")