mirror of https://gitlab.com/bashrc2/epicyon
Avoid name conflict
parent
1571d350e3
commit
f7fbfd9c5b
|
@ -28,7 +28,7 @@ def getJson(session,url: str,headers,params):
|
|||
session.cookies.clear()
|
||||
return session.get(url, headers=sessionHeaders, params=sessionParams).json()
|
||||
|
||||
def postJson(session,postJson,federationList,inboxUrl: str):
|
||||
def postJson(session,postJsonObject,federationList,inboxUrl: str):
|
||||
"""Post a json message to the inbox of another person
|
||||
"""
|
||||
# check that we are posting to a permitted domain
|
||||
|
@ -40,5 +40,5 @@ def postJson(session,postJson,federationList,inboxUrl: str):
|
|||
if not permittedDomain:
|
||||
return None
|
||||
|
||||
postResult = session.post(url = inboxUrl, data = postJson)
|
||||
postResult = session.post(url = inboxUrl, data = postJsonObject)
|
||||
return postResult.text
|
||||
|
|
Loading…
Reference in New Issue