1
0
Fork 0
mirror of synced 2024-06-02 10:34:43 +12:00

fix title showing up as None in some UI spots

This commit is contained in:
Nick Sweeting 2019-02-19 02:40:02 -05:00
parent eff0100971
commit 935dcac0c7
2 changed files with 2 additions and 0 deletions

View file

@ -143,6 +143,7 @@ def write_html_link_index(out_dir, link):
f.write(Template(link_html).substitute({
**link,
**link['latest'],
'title': link['title'] or link['url'],
'type': link['type'] or 'website',
'tags': link['tags'] or 'untagged',
'bookmarked': datetime.fromtimestamp(float(link['timestamp'])).strftime('%Y-%m-%d %H:%M'),

View file

@ -526,6 +526,7 @@ def derived_link_info(link):
'screenshot_link': 'archive/{timestamp}/screenshot.png'.format(**link),
'dom_link': 'archive/{timestamp}/output.html'.format(**link),
'archive_org_url': 'https://web.archive.org/web/{base_url}'.format(**link),
'title': link['title'] or link['url'],
}
# PDF and images are handled slightly differently