Skip to content
Snippets Groups Projects
Verified Commit 57cdc654 authored by Frank Sauerburger's avatar Frank Sauerburger
Browse files

Fix pgp multi-key with id lookup

parent 92fca113
No related branches found
No related tags found
No related merge requests found
Pipeline #9090 failed
......@@ -44,6 +44,9 @@ class PublicKeyFingerprintDetailView(PermissionRequiredMixin, DetailView):
key = queryset.get()
except queryset.model.DoesNotExist:
raise Http404("No OpenPGP Public Key found %matching the query")
except queryset.model.MultipleObjectsReturned:
# Lookup was with ID, assume the same key matched multple times
return queryset.all()[0]
return key
class PublicKeyCreateView(PermissionRequiredMixin, CreateView):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment