main
Bob Mottram 2020-06-24 13:55:39 +01:00
parent 326fb9fc48
commit f5be8eb132
1 changed files with 3 additions and 3 deletions

View File

@ -3360,10 +3360,10 @@ class PubServer(BaseHTTPRequestHandler):
if ('/users/' in self.path and if ('/users/' in self.path and
(self.path.endswith('/newpost') or (self.path.endswith('/newpost') or
self.path.endswith('/newblog') or self.path.endswith('/newblog') or
self.path.endswith('/newreminder') or
self.path.endswith('/newunlisted') or self.path.endswith('/newunlisted') or
self.path.endswith('/newfollowers') or self.path.endswith('/newfollowers') or
self.path.endswith('/newdm') or self.path.endswith('/newdm') or
self.path.endswith('/newreminder') or
self.path.endswith('/newreport') or self.path.endswith('/newreport') or
self.path.endswith('/newquestion') or self.path.endswith('/newquestion') or
self.path.endswith('/newshare'))): self.path.endswith('/newshare'))):
@ -5440,8 +5440,8 @@ class PubServer(BaseHTTPRequestHandler):
messageJson = None messageJson = None
handle = nickname + '@' + self.server.domainFull handle = nickname + '@' + self.server.domainFull
print('A reminder was posted for ' + handle) print('A reminder was posted for ' + handle)
if handle not in fields['message']: if '@' + handle not in fields['message']:
fields['message'] = handle + ' ' + fields['message'] fields['message'] = '@' + handle + ' ' + fields['message']
messageJson = \ messageJson = \
createDirectMessagePost(self.server.baseDir, createDirectMessagePost(self.server.baseDir,
nickname, nickname,