diff --git a/src/NzbDrone.Core.Test/IndexerTests/RarbgTests/RarbgFixture.cs b/src/NzbDrone.Core.Test/IndexerTests/RarbgTests/RarbgFixture.cs index 3a7bd8f27..34f779821 100644 --- a/src/NzbDrone.Core.Test/IndexerTests/RarbgTests/RarbgFixture.cs +++ b/src/NzbDrone.Core.Test/IndexerTests/RarbgTests/RarbgFixture.cs @@ -9,7 +9,7 @@ using NUnit.Framework; using NzbDrone.Common.EnvironmentInfo; using NzbDrone.Common.Http; using NzbDrone.Core.Indexers; -using NzbDrone.Core.Indexers.Rarbg; +using NzbDrone.Core.Indexers.Definitions.Rarbg; using NzbDrone.Core.IndexerSearch.Definitions; using NzbDrone.Core.Parser.Model; using NzbDrone.Core.Test.Framework; diff --git a/src/NzbDrone.Core/Indexers/Definitions/Rarbg/Rarbg.cs b/src/NzbDrone.Core/Indexers/Definitions/Rarbg/Rarbg.cs index c2bffe85f..d9658d3d2 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/Rarbg/Rarbg.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/Rarbg/Rarbg.cs @@ -13,7 +13,7 @@ using NzbDrone.Core.Messaging.Events; using NzbDrone.Core.Parser; using NzbDrone.Core.Validation; -namespace NzbDrone.Core.Indexers.Rarbg +namespace NzbDrone.Core.Indexers.Definitions.Rarbg { public class Rarbg : TorrentIndexerBase { @@ -61,7 +61,7 @@ namespace NzbDrone.Core.Indexers.Rarbg } }; - caps.Categories.AddCategoryMapping(4, NewznabStandardCategory.XXX, "XXX (18+)"); + // caps.Categories.AddCategoryMapping(4, NewznabStandardCategory.XXX, "XXX (18+)"); // 3x is not supported by API #11848 caps.Categories.AddCategoryMapping(14, NewznabStandardCategory.MoviesSD, "Movies/XVID"); caps.Categories.AddCategoryMapping(17, NewznabStandardCategory.MoviesSD, "Movies/x264"); caps.Categories.AddCategoryMapping(18, NewznabStandardCategory.TVSD, "TV Episodes"); diff --git a/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgParser.cs b/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgParser.cs index 753a26b9d..d1d4cbc13 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgParser.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgParser.cs @@ -8,7 +8,7 @@ using NzbDrone.Common.Http; using NzbDrone.Core.Indexers.Exceptions; using NzbDrone.Core.Parser.Model; -namespace NzbDrone.Core.Indexers.Rarbg +namespace NzbDrone.Core.Indexers.Definitions.Rarbg { public class RarbgParser : IParseIndexerResponse { diff --git a/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgRequestGenerator.cs b/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgRequestGenerator.cs index 253b1b20d..ffe7566cb 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgRequestGenerator.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgRequestGenerator.cs @@ -6,7 +6,7 @@ using NzbDrone.Common.Extensions; using NzbDrone.Common.Http; using NzbDrone.Core.IndexerSearch.Definitions; -namespace NzbDrone.Core.Indexers.Rarbg +namespace NzbDrone.Core.Indexers.Definitions.Rarbg { public class RarbgRequestGenerator : IIndexerRequestGenerator { diff --git a/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgResponse.cs b/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgResponse.cs index c93535400..e812a6967 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgResponse.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgResponse.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace NzbDrone.Core.Indexers.Rarbg +namespace NzbDrone.Core.Indexers.Definitions.Rarbg { public class RarbgResponse { diff --git a/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgSettings.cs b/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgSettings.cs index 359aa187e..123c3cd12 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgSettings.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgSettings.cs @@ -1,7 +1,7 @@ using NzbDrone.Core.Annotations; using NzbDrone.Core.Indexers.Settings; -namespace NzbDrone.Core.Indexers.Rarbg +namespace NzbDrone.Core.Indexers.Definitions.Rarbg { public class RarbgSettings : NoAuthTorrentBaseSettings { diff --git a/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgTokenProvider.cs b/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgTokenProvider.cs index 8ed497a18..286d349aa 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgTokenProvider.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/Rarbg/RarbgTokenProvider.cs @@ -5,7 +5,7 @@ using NzbDrone.Common.Cache; using NzbDrone.Common.EnvironmentInfo; using NzbDrone.Common.Http; -namespace NzbDrone.Core.Indexers.Rarbg +namespace NzbDrone.Core.Indexers.Definitions.Rarbg { public interface IRarbgTokenProvider {