mirror of https://gitlab.com/bashrc2/epicyon
Merge branch 'main' of ssh://code.freedombone.net:2222/bashrc/epicyon into main
commit
46d2247e57
|
|
@ -184,6 +184,8 @@ def _notificationReplyToPost(session, postId: str,
|
||||||
isArticle = False
|
isArticle = False
|
||||||
subject = None
|
subject = None
|
||||||
commentsEnabled = True
|
commentsEnabled = True
|
||||||
|
sayStr = 'Sending reply'
|
||||||
|
_sayCommand(sayStr, screenreader, systemLanguage, espeak)
|
||||||
if sendPostViaServer(__version__,
|
if sendPostViaServer(__version__,
|
||||||
baseDir, session, nickname, password,
|
baseDir, session, nickname, password,
|
||||||
domain, port,
|
domain, port,
|
||||||
|
|
@ -241,6 +243,8 @@ def _notificationNewPost(session,
|
||||||
subject = None
|
subject = None
|
||||||
commentsEnabled = True
|
commentsEnabled = True
|
||||||
subject = None
|
subject = None
|
||||||
|
sayStr = 'Sending'
|
||||||
|
_sayCommand(sayStr, screenreader, systemLanguage, espeak)
|
||||||
if sendPostViaServer(__version__,
|
if sendPostViaServer(__version__,
|
||||||
baseDir, session, nickname, password,
|
baseDir, session, nickname, password,
|
||||||
domain, port,
|
domain, port,
|
||||||
|
|
|
||||||
2
posts.py
2
posts.py
|
|
@ -958,7 +958,7 @@ def _createPostBase(baseDir: str, nickname: str, domain: str, port: int,
|
||||||
tags.append(tag)
|
tags.append(tag)
|
||||||
if isPublic:
|
if isPublic:
|
||||||
_updateHashtagsIndex(baseDir, tag, newPostId)
|
_updateHashtagsIndex(baseDir, tag, newPostId)
|
||||||
print('Content tags: ' + str(tags))
|
# print('Content tags: ' + str(tags))
|
||||||
|
|
||||||
if inReplyTo and not sensitive:
|
if inReplyTo and not sensitive:
|
||||||
# locate the post which this is a reply to and check if
|
# locate the post which this is a reply to and check if
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue