mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-11 23:17:11 +00:00
sort after uniqueify
This commit is contained in:
parent
de28e24538
commit
2641c46a4d
1 changed files with 1 additions and 1 deletions
2
links.py
2
links.py
|
@ -46,8 +46,8 @@ from config import ANSI
|
|||
|
||||
def validate_links(links):
|
||||
links = archivable_links(links) # remove chrome://, about:, mailto: etc.
|
||||
links = sorted_links(links) # deterministically sort the links based on timstamp, url
|
||||
links = uniquefied_links(links) # merge/dedupe duplicate timestamps & urls
|
||||
links = sorted_links(links) # deterministically sort the links based on timstamp, url
|
||||
|
||||
if not links:
|
||||
print('[X] No links found :(')
|
||||
|
|
Loading…
Reference in a new issue