View Single Post
Old 06-20-2022, 07:25 AM   #6
unkn0wn
Guru
unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.unkn0wn understands the Henderson-Hasselbalch Equation.
 
Posts: 631
Karma: 85520
Join Date: May 2021
Device: kindle
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})

Last edited by unkn0wn; 06-20-2022 at 07:43 AM.
unkn0wn is offline   Reply With Quote