description in ToC isn't working. idk why.. if its able to get url and title from json it should load description too..
I checked log and desc shows up there too but gets removed later after logging.. maybe during return
its justs a dot below headline now. (we can never understand econ headline without its desc in ToC)
if you fix this maybe get subheadline into description too..
Code:
desc = safe_dict(part, "print", "description") or ''
sub = safe_dict(part, "print", "subheadline") or ''
if section != sub:
desc = sub + ' :: ' + desc
feeds_dict[section].append({"title": title, "url": url, "description": desc})