Replace "indent_level" with "depth" in lobsters API

See:
fe09e5aa31
master
Tanner Collin 8 months ago
parent c65fb69092
commit e79fca6ecc
  1. 10
      apiserver/feeds/lobsters.py

@ -67,7 +67,7 @@ def iter_comments(flat_comments):
parent_stack = [] parent_stack = []
for comment in flat_comments: for comment in flat_comments:
c = make_comment(comment) c = make_comment(comment)
indent = comment['indent_level'] indent = comment['depth']
if indent == 1: if indent == 1:
nested_comments.append(c) nested_comments.append(c)
@ -100,13 +100,7 @@ def story(ref):
s['title'] = r.get('title', '') s['title'] = r.get('title', '')
s['link'] = SITE_LINK(ref) s['link'] = SITE_LINK(ref)
s['url'] = r.get('url', '') s['url'] = r.get('url', '')
s['comments'] = iter_comments(r['comments'])
try:
s['comments'] = iter_comments(r['comments'])
except TypeError:
logging.exception('TypeError iterating lobsters comments, skipping article.')
return False
s['num_comments'] = r['comment_count'] s['num_comments'] = r['comment_count']
if 'description' in r and r['description']: if 'description' in r and r['description']:

Loading…
Cancel
Save