From de8dc913418ae2febb432c74db6dbfcc6445c818 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 29 Nov 2021 10:07:49 +0000 Subject: [PATCH] Extra outbox search phrases --- daemon.py | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index a070bdd64..19188e93d 100644 --- a/daemon.py +++ b/daemon.py @@ -3193,7 +3193,28 @@ class PubServer(BaseHTTPRequestHandler): self._write(msg) self.server.POSTbusy = False return - elif searchStr.startswith("'"): + elif (searchStr.startswith("'") or + searchStr.endswith(' history') or + searchStr.endswith(' in sent') or + searchStr.endswith(' in outbox') or + searchStr.endswith(' in my outbox') or + searchStr.endswith(' in sent items') or + searchStr.endswith(' in sent posts') or + searchStr.endswith(' in my posts')): + possibleEndings = ( + ' in my posts', + ' in sent posts', + ' in my history', + ' in history', + ' in sent', + ' in outbox', + ' in my outbox', + ' in sent items', + ' history' + ) + for possEnding in possibleEndings: + if searchStr.endswith(possEnding): + searchStr = searchStr.replace(possEnding, '') # your post history search nickname = getNicknameFromActor(actorStr) searchStr = searchStr.replace("'", '', 1).strip()