From 33807ec7a9dcec7b8167208a3963bef173ce2cbc Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 16 Nov 2022 14:00:53 +0000 Subject: [PATCH] Receive post with the original path --- daemon.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index 0bc0325df..288c06fb1 100644 --- a/daemon.py +++ b/daemon.py @@ -20126,6 +20126,7 @@ class PubServer(BaseHTTPRequestHandler): This creates a thread to send the new post """ page_number = 1 + original_path = path if '/users/' not in path: print('Not receiving new post for ' + path + @@ -20223,7 +20224,8 @@ class PubServer(BaseHTTPRequestHandler): # other events happen during their decoding print('Creating new post from: ' + new_post_thread_name) self._receive_new_post_process(post_type, - path, headers, length, + original_path, + headers, length, post_bytes, boundary, calling_domain, cookie, content_license_url,