fix not validate

This commit is contained in:
Cayo Puigdefabregas 2023-11-29 12:33:55 +01:00
parent 3ba9a7ab88
commit adfc4df13d
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class VerifyView(View):
def get(self, request, *args, **kwargs):
org = self.validate(request)
if not org:
return Http404("Organization not found!")
raise Http404("Organization not found!")
presentation_definition = json.dumps(settings.SUPPORTED_CREDENTIALS)
authorization = Authorization(
organization=org,