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]
|
toRecipients=[toUrl]
|
||||||
|
|
||||||
# who to send to
|
# who to send to
|
||||||
for mention in mentionedRecipients:
|
if mentionedRecipients:
|
||||||
if mention not in toRecipients:
|
for mention in mentionedRecipients:
|
||||||
toRecipients.append(mention)
|
if mention not in toRecipients:
|
||||||
|
toRecipients.append(mention)
|
||||||
|
|
||||||
# create a list of hashtags
|
# create a list of hashtags
|
||||||
if hashtagsDict:
|
if hashtagsDict:
|
||||||
|
|
Loading…
Reference in New Issue