forked from indymedia/epicyon
Check for none
parent
0d51133942
commit
f0fb417df3
5
posts.py
5
posts.py
|
@ -1236,8 +1236,9 @@ def sendSignedJson(postJsonObject: {},session,baseDir: str, \
|
||||||
print("inboxUrl: "+str(inboxUrl))
|
print("inboxUrl: "+str(inboxUrl))
|
||||||
print("toPersonId: "+str(toPersonId))
|
print("toPersonId: "+str(toPersonId))
|
||||||
print("sharedInboxUrl: "+str(sharedInboxUrl))
|
print("sharedInboxUrl: "+str(sharedInboxUrl))
|
||||||
if inboxUrl.endswith('/actor/inbox'):
|
if inboxUrl:
|
||||||
inboxUrl=sharedInboxUrl
|
if inboxUrl.endswith('/actor/inbox'):
|
||||||
|
inboxUrl=sharedInboxUrl
|
||||||
|
|
||||||
if not inboxUrl:
|
if not inboxUrl:
|
||||||
if debug:
|
if debug:
|
||||||
|
|
Loading…
Reference in New Issue