Other way around

merge-requests/30/head
Bob Mottram 2021-11-11 22:16:31 +00:00
parent 28f21e8af4
commit 29f12dc4a4
1 changed files with 2 additions and 2 deletions

View File

@ -8279,7 +8279,7 @@ class PubServer(BaseHTTPRequestHandler):
"""Press the emoji reaction picker icon at the bottom of the post """Press the emoji reaction picker icon at the bottom of the post
""" """
pageNumber = 1 pageNumber = 1
reactionUrl = path.split('?reactsel=')[1] reactionUrl = path.split('?selreact=')[1]
if '?' in reactionUrl: if '?' in reactionUrl:
reactionUrl = reactionUrl.split('?')[0] reactionUrl = reactionUrl.split('?')[0]
timelineBookmark = '' timelineBookmark = ''
@ -8288,7 +8288,7 @@ class PubServer(BaseHTTPRequestHandler):
if '?' in timelineBookmark: if '?' in timelineBookmark:
timelineBookmark = timelineBookmark.split('?')[0] timelineBookmark = timelineBookmark.split('?')[0]
timelineBookmark = '#' + timelineBookmark timelineBookmark = '#' + timelineBookmark
actor = path.split('?reactsel=')[0] actor = path.split('?selreact=')[0]
if '?page=' in path: if '?page=' in path:
pageNumberStr = path.split('?page=')[1] pageNumberStr = path.split('?page=')[1]
if '?' in pageNumberStr: if '?' in pageNumberStr: