From 3a4de9cca12f1c8432391cd151ca25c71c40c0f1 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Wed, 5 Feb 2025 19:59:48 +0200 Subject: [PATCH] Fixed: (MAM) Continue downloading if attempting to buy personal FL for VIP release --- src/NzbDrone.Core/Indexers/Definitions/MyAnonamouse.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/NzbDrone.Core/Indexers/Definitions/MyAnonamouse.cs b/src/NzbDrone.Core/Indexers/Definitions/MyAnonamouse.cs index e8ab9980b..dad8fe8e8 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/MyAnonamouse.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/MyAnonamouse.cs @@ -95,6 +95,10 @@ namespace NzbDrone.Core.Indexers.Definitions { _logger.Debug("Successfully used freeleech wedge for torrentid {0}.", torrentId); } + else if (resource.Error.IsNotNullOrWhiteSpace() && resource.Error.ContainsIgnoreCase("This Torrent is VIP")) + { + _logger.Debug("{0} is already VIP, continuing downloading: {1}", torrentId, resource.Error); + } else if (resource.Error.IsNotNullOrWhiteSpace() && resource.Error.ContainsIgnoreCase("This is already a personal freeleech")) { _logger.Debug("{0} is already a personal freeleech, continuing downloading: {1}", torrentId, resource.Error);