Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

Commit

Permalink
Fix a bug in client exclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
varuna-sd authored Jun 25, 2020
1 parent fa9fae6 commit d219062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oidc_provider/lib/endpoints/authorize.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ def end_session_in_rps(self):

queryset = Client.objects.get_queryset()
if self._client:
queryset = queryset.exclude(client=self._client)
queryset = queryset.exclude(client_id=self._client.client_id)

for client in queryset.all():
if client.backchannel_logout_uri:
Expand Down

0 comments on commit d219062

Please sign in to comment.