1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-22 14:13:01 +02:00

fix pocket timestamps defaulting to now

This commit is contained in:
Nick Sweeting
2019-02-19 01:54:09 -05:00
parent 2c9aad559d
commit 1b36d5b29c

View File

@@ -172,7 +172,7 @@ def parse_rss_export(rss_file):
'url': url,
'domain': domain(url),
'base_url': base_url(url),
'timestamp': str(datetime.now().timestamp()),
'timestamp': str(time.timestamp()),
'tags': '',
'title': title or fetch_page_title(url),
'sources': [rss_file.name],