use authorship step 7 when fetching reply contexts too

This commit is contained in:
Kyle Mahan 2016-04-25 14:01:23 -07:00
parent d008d58412
commit 8cb2124251

View file

@ -576,7 +576,8 @@ def fetch_reply_context(entry, in_reply_to, now):
try:
proxied_reply_url = proxy_url(in_reply_to)
parsed = mf2util.interpret(
mf2py.parse(url=proxied_reply_url), in_reply_to)
mf2py.parse(url=proxied_reply_url), in_reply_to,
fetch_mf2_func=lambda url: mf2py.parse(url=url))
if parsed:
context = hentry_to_entry(parsed, None, False, now)
except requests.exceptions.RequestException as err: