forked from indymedia/epicyon
Mentioned recipients may not exist
parent
cf96d38b9d
commit
4937bf9d91
7
posts.py
7
posts.py
|
@ -471,9 +471,10 @@ def createPostBase(baseDir: str,nickname: str, domain: str, port: int, \
|
|||
toRecipients=[toUrl]
|
||||
|
||||
# who to send to
|
||||
for mention in mentionedRecipients:
|
||||
if mention not in toRecipients:
|
||||
toRecipients.append(mention)
|
||||
if mentionedRecipients:
|
||||
for mention in mentionedRecipients:
|
||||
if mention not in toRecipients:
|
||||
toRecipients.append(mention)
|
||||
|
||||
# create a list of hashtags
|
||||
if hashtagsDict:
|
||||
|
|
Loading…
Reference in New Issue