mirror of https://gitlab.com/bashrc2/epicyon
More debug
parent
5bc7b515c9
commit
18dfbf6e3b
17
outbox.py
17
outbox.py
|
@ -65,8 +65,21 @@ def postMessageToOutbox(messageJson: {},postToNickname: str, \
|
||||||
messageJson.get('actor') and \
|
messageJson.get('actor') and \
|
||||||
messageJson.get('object') and \
|
messageJson.get('object') and \
|
||||||
messageJson.get('to')):
|
messageJson.get('to')):
|
||||||
if debug:
|
if not messageJson.get('id'):
|
||||||
print('DEBUG: POST to outbox - Create does not have the required parameters')
|
if debug:
|
||||||
|
print('DEBUG: POST to outbox - Create does not have the id parameter '+str(messageJson))
|
||||||
|
elif not messageJson.get('id'):
|
||||||
|
if debug:
|
||||||
|
print('DEBUG: POST to outbox - Create does not have the type parameter '+str(messageJson))
|
||||||
|
elif not messageJson.get('id'):
|
||||||
|
if debug:
|
||||||
|
print('DEBUG: POST to outbox - Create does not have the actor parameter '+str(messageJson))
|
||||||
|
elif not messageJson.get('id'):
|
||||||
|
if debug:
|
||||||
|
print('DEBUG: POST to outbox - Create does not have the object parameter '+str(messageJson))
|
||||||
|
else:
|
||||||
|
if debug:
|
||||||
|
print('DEBUG: POST to outbox - Create does not have the "to" parameter '+str(messageJson))
|
||||||
return False
|
return False
|
||||||
testDomain,testPort=getDomainFromActor(messageJson['actor'])
|
testDomain,testPort=getDomainFromActor(messageJson['actor'])
|
||||||
if testPort:
|
if testPort:
|
||||||
|
|
Loading…
Reference in New Issue