diff --git a/r2/r2/lib/jsontemplates.py b/r2/r2/lib/jsontemplates.py index 10ba6be51..a5a088ebf 100755 --- a/r2/r2/lib/jsontemplates.py +++ b/r2/r2/lib/jsontemplates.py @@ -584,7 +584,7 @@ class TrafficJsonTemplate(JsonTemplate): class WikiJsonTemplate(JsonTemplate): def render(self, thing, *a, **kw): try: - content = thing.content + content = thing.inner_content except AttributeError: content = thing.listing return ObjectTemplate(content.render() if thing else {})