mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-14 07:04:27 -04:00
fix pocket timestamps defaulting to now
This commit is contained in:
parent
2c9aad559d
commit
1b36d5b29c
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ def parse_rss_export(rss_file):
|
||||||
'url': url,
|
'url': url,
|
||||||
'domain': domain(url),
|
'domain': domain(url),
|
||||||
'base_url': base_url(url),
|
'base_url': base_url(url),
|
||||||
'timestamp': str(datetime.now().timestamp()),
|
'timestamp': str(time.timestamp()),
|
||||||
'tags': '',
|
'tags': '',
|
||||||
'title': title or fetch_page_title(url),
|
'title': title or fetch_page_title(url),
|
||||||
'sources': [rss_file.name],
|
'sources': [rss_file.name],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue