From 6b0600366529ad7726750ad0cb4b341ff92db446 Mon Sep 17 00:00:00 2001 From: Qstick Date: Mon, 31 May 2021 15:20:19 -0400 Subject: [PATCH] Remove duplicate logic in Deluge.cs --- src/NzbDrone.Core/Download/Clients/Deluge/Deluge.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/Clients/Deluge/Deluge.cs b/src/NzbDrone.Core/Download/Clients/Deluge/Deluge.cs index bad9e1a91..82fb83402 100644 --- a/src/NzbDrone.Core/Download/Clients/Deluge/Deluge.cs +++ b/src/NzbDrone.Core/Download/Clients/Deluge/Deluge.cs @@ -139,7 +139,7 @@ namespace NzbDrone.Core.Download.Clients.Deluge private ValidationFailure TestCategory() { - if (Settings.Category.IsNullOrWhiteSpace() && Settings.Category.IsNullOrWhiteSpace()) + if (Settings.Category.IsNullOrWhiteSpace()) { return null; }