From 95dbed2d72777182d2b3018fd6fa41bd32aaabaa Mon Sep 17 00:00:00 2001 From: Jessica Tallon Date: Tue, 16 Dec 2014 12:15:13 +0000 Subject: [PATCH] Fix #1078 - Stop 500 error when GET request on inbox --- mediagoblin/federation/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediagoblin/federation/views.py b/mediagoblin/federation/views.py index 5b10fb5b..bd7d9d4a 100644 --- a/mediagoblin/federation/views.py +++ b/mediagoblin/federation/views.py @@ -156,7 +156,7 @@ def inbox_endpoint(request, inbox=None): ) if inbox is None: - inbox = Activity.query.all() + inbox = Activity.query # We want to make a query for all media on the site and then apply GET # limits where we can.