providers/oauth2: don't separate scopes by comma-space

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2022-08-07 13:15:12 +02:00
parent e1249d3760
commit f01f10c5e5
1 changed files with 1 additions and 1 deletions

View File

@ -457,7 +457,7 @@ class OAuthFulfillmentStage(StageView):
EventAction.AUTHORIZE_APPLICATION, EventAction.AUTHORIZE_APPLICATION,
authorized_application=self.application, authorized_application=self.application,
flow=self.executor.plan.flow_pk, flow=self.executor.plan.flow_pk,
scopes=", ".join(self.params.scope), scopes=" ".join(self.params.scope),
).from_http(self.request) ).from_http(self.request)
return self.redirect(self.create_response_uri()) return self.redirect(self.create_response_uri())
except (ClientIdError, RedirectUriError) as error: except (ClientIdError, RedirectUriError) as error: