mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
New: Add additional archive exentions
(cherry picked from commit 750a9353f82da4e016bee25e0c625cd6d8613b57)
This commit is contained in:
parent
1190b6ea04
commit
7952d4096a
1 changed files with 12 additions and 5 deletions
|
@ -7,12 +7,19 @@ namespace NzbDrone.Core.MediaFiles
|
||||||
{
|
{
|
||||||
private static List<string> _archiveExtensions = new List<string>
|
private static List<string> _archiveExtensions = new List<string>
|
||||||
{
|
{
|
||||||
".rar",
|
".7z",
|
||||||
".r00",
|
".bz2",
|
||||||
".zip",
|
|
||||||
".tar",
|
|
||||||
".gz",
|
".gz",
|
||||||
".tar.gz"
|
".r00",
|
||||||
|
".rar",
|
||||||
|
".tar.bz2",
|
||||||
|
".tar.gz",
|
||||||
|
".tar",
|
||||||
|
".tb2",
|
||||||
|
".tbz2",
|
||||||
|
".tgz",
|
||||||
|
".zip",
|
||||||
|
".zipx"
|
||||||
};
|
};
|
||||||
|
|
||||||
private static List<string> _executableExtensions = new List<string>
|
private static List<string> _executableExtensions = new List<string>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue