This is an automated email from the ASF dual-hosted git repository. sebb pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
commit 61be0bdfb6274c5982c6a6003299107e72d8dd1a Author: Sebb <[email protected]> AuthorDate: Wed Jan 26 21:24:10 2022 +0000 oauthGeneric should not presume it's authoritative This fixes #217 --- server/plugins/oauthGeneric.py | 1 - 1 file changed, 1 deletion(-) diff --git a/server/plugins/oauthGeneric.py b/server/plugins/oauthGeneric.py index 20edd38..8264370 100644 --- a/server/plugins/oauthGeneric.py +++ b/server/plugins/oauthGeneric.py @@ -34,6 +34,5 @@ async def process(formdata: dict, _session, _server) -> typing.Optional[dict]: async with aiohttp.client.request("POST", formdata["oauth_token"], headers=headers, data=formdata) as rv: js = await rv.json() js["oauth_domain"] = oauth_domain - js["authoritative"] = True return js return None \ No newline at end of file
