From 94ff176452ca9c7e02931911464e414ee3596c80 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 10 Jul 2022 21:02:17 +0100 Subject: [PATCH] Debug --- daemon.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/daemon.py b/daemon.py index 60cfe2562..71c5ebe00 100644 --- a/daemon.py +++ b/daemon.py @@ -4978,6 +4978,9 @@ class PubServer(BaseHTTPRequestHandler): fields = \ extract_text_fields_in_post(post_bytes, boundary, debug) + print('hashtag category POST bytes: ' + str(post_bytes)) + print('hashtag category POST fields: ' + str(fields)) + if fields.get('hashtagCategory'): category_str = fields['hashtagCategory'].lower() if not is_blocked_hashtag(base_dir, category_str) and \