diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-09 15:46:20 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-09 15:46:20 -0800 |
commit | 996b2e2084c1798126bd91dd950c063982398bec (patch) | |
tree | 2c4a9eef6432158088fea255db9e8b7b098a371d /notes/cleanups/scripts/fetch_full_cdx_ts.py | |
parent | a246b5a54dac6b29a30e90265d64a3c4332902e5 (diff) | |
download | fatcat-996b2e2084c1798126bd91dd950c063982398bec.tar.gz fatcat-996b2e2084c1798126bd91dd950c063982398bec.zip |
more iteration on short wayback timestamp cleanup
Diffstat (limited to 'notes/cleanups/scripts/fetch_full_cdx_ts.py')
-rw-r--r-- | notes/cleanups/scripts/fetch_full_cdx_ts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/notes/cleanups/scripts/fetch_full_cdx_ts.py b/notes/cleanups/scripts/fetch_full_cdx_ts.py index 6f67c7e1..d5b0c476 100644 --- a/notes/cleanups/scripts/fetch_full_cdx_ts.py +++ b/notes/cleanups/scripts/fetch_full_cdx_ts.py @@ -137,7 +137,7 @@ def process_file(fe, session) -> dict: if short in full_urls: continue - if original_url in self_urls: + if original_url in self_urls and ts in self_urls[original_url]: full_urls[short] = self_urls[original_url] status = "success-self" continue |