mirror of https://gitlab.com/bashrc2/epicyon
Merge branch 'main' of ssh://code.freedombone.net:2222/bashrc/epicyon into main
commit
b048a7c9b1
|
|
@ -912,14 +912,13 @@ def runNotificationsClient(baseDir: str, proxyType: str, httpPrefix: str,
|
||||||
|
|
||||||
# store incoming post
|
# store incoming post
|
||||||
speakerJson['decrypted'] = False
|
speakerJson['decrypted'] = False
|
||||||
if encryptedMessage or speakerJson.get('direct'):
|
if speakerJson.get('replyToYou'):
|
||||||
_storeMessage(speakerJson, 'dm')
|
|
||||||
elif speakerJson.get('replyToYou'):
|
|
||||||
newRepliesExist = True
|
newRepliesExist = True
|
||||||
_storeMessage(speakerJson, 'replies')
|
_storeMessage(speakerJson, 'replies')
|
||||||
else:
|
if speakerJson.get('direct'):
|
||||||
if storeInboxPosts:
|
_storeMessage(speakerJson, 'replies')
|
||||||
_storeMessage(speakerJson, 'inbox')
|
if storeInboxPosts:
|
||||||
|
_storeMessage(speakerJson, 'inbox')
|
||||||
|
|
||||||
if not showNewPosts:
|
if not showNewPosts:
|
||||||
_clearScreen()
|
_clearScreen()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue