From 3024bd77d3e9a1d932446a76bee97ddcdcba95af Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 28 Oct 2021 12:22:08 +0100 Subject: [PATCH] Semicolon separator --- daemon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon.py b/daemon.py index a732b789e..a011f230f 100644 --- a/daemon.py +++ b/daemon.py @@ -14404,8 +14404,8 @@ class PubServer(BaseHTTPRequestHandler): '?editblogpost=' in self.path and \ ';actor=' in self.path: messageId = self.path.split('?editblogpost=')[1] - if '?' in messageId: - messageId = messageId.split('?')[0] + if ';' in messageId: + messageId = messageId.split(';')[0] actor = self.path.split(';actor=')[1] if ';' in actor: actor = actor.split(';')[0]