Merge branch 'main' of ssh://code.freedombone.net:2222/bashrc/epicyon into main

main
Bob Mottram 2021-03-16 14:02:33 +00:00
commit b048a7c9b1
1 changed files with 5 additions and 6 deletions

View File

@ -912,14 +912,13 @@ def runNotificationsClient(baseDir: str, proxyType: str, httpPrefix: str,
# store incoming post
speakerJson['decrypted'] = False
if encryptedMessage or speakerJson.get('direct'):
_storeMessage(speakerJson, 'dm')
elif speakerJson.get('replyToYou'):
if speakerJson.get('replyToYou'):
newRepliesExist = True
_storeMessage(speakerJson, 'replies')
else:
if storeInboxPosts:
_storeMessage(speakerJson, 'inbox')
if speakerJson.get('direct'):
_storeMessage(speakerJson, 'replies')
if storeInboxPosts:
_storeMessage(speakerJson, 'inbox')
if not showNewPosts:
_clearScreen()