diff --git a/bothub/api/v2/examples/filters.py b/bothub/api/v2/examples/filters.py index eb54cd7d..985e37a1 100644 --- a/bothub/api/v2/examples/filters.py +++ b/bothub/api/v2/examples/filters.py @@ -108,7 +108,7 @@ def filter_repository_uuid(self, queryset, name, value): if not authorization.can_translate: raise PermissionDenied() if request.query_params.get("repository_version"): - return repository.examples(queryset=queryset, version_default=False) + return queryset return repository.examples(queryset=queryset) except Repository.DoesNotExist: raise NotFound(_("Repository {} does not exist").format(value))