mirror of https://gitlab.com/bashrc2/epicyon
Debug if html could not be generated for announce
parent
cffc8089c8
commit
ce5c50f544
7
inbox.py
7
inbox.py
|
@ -1611,7 +1611,8 @@ def _receiveAnnounce(recentPostsCache: {},
|
||||||
manuallyApproveFollowers = \
|
manuallyApproveFollowers = \
|
||||||
followerApprovalActive(baseDir, nickname, domain)
|
followerApprovalActive(baseDir, nickname, domain)
|
||||||
notDM = True
|
notDM = True
|
||||||
print('Generating html for announce ' + postJsonObject['id'])
|
if debug:
|
||||||
|
print('Generating html for announce ' + postJsonObject['id'])
|
||||||
announceHtml = \
|
announceHtml = \
|
||||||
individualPostAsHtml(signingPrivateKeyPem, True,
|
individualPostAsHtml(signingPrivateKeyPem, True,
|
||||||
recentPostsCache, maxRecentPosts,
|
recentPostsCache, maxRecentPosts,
|
||||||
|
@ -1629,7 +1630,9 @@ def _receiveAnnounce(recentPostsCache: {},
|
||||||
showIndividualPostIcons,
|
showIndividualPostIcons,
|
||||||
manuallyApproveFollowers,
|
manuallyApproveFollowers,
|
||||||
False, True, False)
|
False, True, False)
|
||||||
print('Generating html for announce ' + str(announceHtml))
|
if not announceHtml:
|
||||||
|
print('WARN: Unable to generate html for announce ' +
|
||||||
|
postJsonObject['id'])
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue