From 29f12dc4a4ec6857e88f553aece95679dddc753a Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 11 Nov 2021 22:16:31 +0000 Subject: [PATCH] Other way around --- daemon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon.py b/daemon.py index e912a3d71..930baf738 100644 --- a/daemon.py +++ b/daemon.py @@ -8279,7 +8279,7 @@ class PubServer(BaseHTTPRequestHandler): """Press the emoji reaction picker icon at the bottom of the post """ pageNumber = 1 - reactionUrl = path.split('?reactsel=')[1] + reactionUrl = path.split('?selreact=')[1] if '?' in reactionUrl: reactionUrl = reactionUrl.split('?')[0] timelineBookmark = '' @@ -8288,7 +8288,7 @@ class PubServer(BaseHTTPRequestHandler): if '?' in timelineBookmark: timelineBookmark = timelineBookmark.split('?')[0] timelineBookmark = '#' + timelineBookmark - actor = path.split('?reactsel=')[0] + actor = path.split('?selreact=')[0] if '?page=' in path: pageNumberStr = path.split('?page=')[1] if '?' in pageNumberStr: