Only abandon post if signature checking is strict

merge-requests/30/head
Bob Mottram 2021-01-05 12:13:18 +00:00
parent 75788fd9f8
commit 584fe93b56
1 changed files with 6 additions and 5 deletions

View File

@ -2745,11 +2745,12 @@ def runInboxQueue(recentPostsCache: {}, maxRecentPosts: int,
else:
print('WARN: jsonld inbox signature check failed ' +
keyId)
if os.path.isfile(queueFilename):
os.remove(queueFilename)
if len(queue) > 0:
queue.pop(0)
continue
if verifyAllSignatures:
if os.path.isfile(queueFilename):
os.remove(queueFilename)
if len(queue) > 0:
queue.pop(0)
continue
else:
print('jsonld inbox signature check success ' + keyId)