From 0181d4fbc87d1a98365ff714e8ccf3e2ec9c6573 Mon Sep 17 00:00:00 2001 From: Brian Simpson Date: Wed, 12 Feb 2014 20:55:45 -0500 Subject: [PATCH] load_subreddits: Don't load things on SRMember. --- r2/r2/models/subreddit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r2/r2/models/subreddit.py b/r2/r2/models/subreddit.py index 4ba172609..b73084805 100644 --- a/r2/r2/models/subreddit.py +++ b/r2/r2/models/subreddit.py @@ -619,7 +619,7 @@ class Subreddit(Thing, Printable, BaseSite): # dict( {Subreddit,Account,name} -> Relationship ) SRMember._fast_query(subreddits.values(), (c.user,), ('contributor', 'moderator'), - data=True, eager_load=True, thing_data=True) + data=True) return subreddits if return_dict else subreddits.values()