1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-29 23:12:39 +01:00

New: Add additional archive exentions

Closes #7191
This commit is contained in:
Mark McDowall 2024-09-08 10:17:09 -07:00 committed by Mark McDowall
parent 71a19377d9
commit 750a9353f8

View File

@ -7,12 +7,19 @@ namespace NzbDrone.Core.MediaFiles
{
private static List<string> _archiveExtensions = new List<string>
{
".rar",
".r00",
".zip",
".tar",
".7z",
".bz2",
".gz",
".tar.gz"
".r00",
".rar",
".tar.bz2",
".tar.gz",
".tar",
".tb2",
".tbz2",
".tgz",
".zip",
".zipx"
};
private static List<string> _executableExtensions = new List<string>