From 1241f901897d7a1806e67f3ce570a710f87c87e4 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sun, 30 Jun 2019 20:39:52 -0500 Subject: [PATCH] re-add initial support for 7zip --- src/FilterLists.Agent/Features/Archiver/DownloadLists.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Agent/Features/Archiver/DownloadLists.cs b/src/FilterLists.Agent/Features/Archiver/DownloadLists.cs index 6b227f354..8859590f7 100644 --- a/src/FilterLists.Agent/Features/Archiver/DownloadLists.cs +++ b/src/FilterLists.Agent/Features/Archiver/DownloadLists.cs @@ -31,7 +31,7 @@ private static readonly Dictionary> CommandsByE = new Dictionary> { {"", l => new DownloadRawText.Command(l)}, - //{".7z", l => new DownloadRawText.Command(l)}, + {".7z", l => new DownloadSevenZip.Command(l)}, {".acl", l => new DownloadRawText.Command(l)}, {".action", l => new DownloadRawText.Command(l)}, {".all", l => new DownloadRawText.Command(l)},