diff --git a/src/NzbDrone.Common/ArchiveService.cs b/src/NzbDrone.Common/ArchiveService.cs index dde47bc71f..b48605f49f 100644 --- a/src/NzbDrone.Common/ArchiveService.cs +++ b/src/NzbDrone.Common/ArchiveService.cs @@ -23,7 +23,7 @@ public class ArchiveService : IArchiveService { private readonly Logger _logger; - private static readonly HashSet SupportedExtensions = new(StringComparer.OrdinalIgnoreCase) + private static readonly HashSet SupportedExtensions = new HashSet(StringComparer.OrdinalIgnoreCase) { ".zip", ".rar", ".7z", ".tar", ".gz", ".tgz", ".tar.gz", ".bz2", ".tar.bz2" };