diff --git a/quickpeep_indexer/src/bin/qp-indexer.rs b/quickpeep_indexer/src/bin/qp-indexer.rs index d431a30..ba79aa7 100644 --- a/quickpeep_indexer/src/bin/qp-indexer.rs +++ b/quickpeep_indexer/src/bin/qp-indexer.rs @@ -140,6 +140,8 @@ pub fn handle_pack_feed( Ok(()) } +const USEFUL_RAKEPACKS_TO_PULL_FROM_FEED: [&'static str; 2] = [".icons.pack", ".pages.pack"]; + fn find_new_packs(feed_url: Url, processed_list_path: &Path) -> anyhow::Result> { let processed_file = OpenOptions::new() .read(true) @@ -157,6 +159,13 @@ fn find_new_packs(feed_url: Url, processed_list_path: &Path) -> anyhow::Result