feat: Look in wget, singlefile or dom outputs before attempting to download the information again

This commit is contained in:
Cristian 2020-08-11 08:36:03 -05:00
parent a14762640e
commit 0ec747f64e
2 changed files with 27 additions and 5 deletions

View file

@ -40,10 +40,10 @@ def get_default_archive_methods():
('favicon', should_save_favicon, save_favicon),
('wget', should_save_wget, save_wget),
('singlefile', should_save_singlefile, save_singlefile),
('readability', should_save_readability, save_readability),
('pdf', should_save_pdf, save_pdf),
('screenshot', should_save_screenshot, save_screenshot),
('dom', should_save_dom, save_dom),
('readability', should_save_readability, save_readability), #keep readability below wget and singlefile, as it depends on them
('git', should_save_git, save_git),
('media', should_save_media, save_media),
('archive_org', should_save_archive_dot_org, save_archive_dot_org),