diff --git a/public/views.py b/public/views.py index fe99fb6f..e2cd0c10 100644 --- a/public/views.py +++ b/public/views.py @@ -57,7 +57,7 @@ def _mirror_urls(): '''In order to ensure this is lazily evaluated since we can't do sorting at the database level, make it a callable.''' urls = MirrorUrl.objects.select_related('mirror').filter( - active=True, protocol__default=True, + active=True, protocol__protocol='https', mirror__public=True, mirror__active=True, mirror__isos=True) sort_by = attrgetter('country.name', 'mirror.name') return sorted(urls, key=sort_by)