From 49486d60b0810031f63fd42bb6d1d694f144c937 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Wed, 6 Apr 2022 20:53:52 -0500 Subject: [PATCH] Fixed: Clarify Qbit Content Path Error (cherry picked from commit bba4a5636ed07277d82531c35cfc996bd17870eb) --- src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs index 207b7acc1..5b99c9aa9 100644 --- a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs +++ b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs @@ -308,7 +308,7 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent else if (item.Status == DownloadItemStatus.Completed) { item.Status = DownloadItemStatus.Warning; - item.Message = "Unable to import since content path is equal to root download directory, perhaps Keep top-level folder was disabled for this torrent?"; + item.Message = "Unable to Import. Path matches client base download directory, it's possible 'Keep top-level folder' is disabled for this torrent or 'Torrent Content Layout' is NOT set to 'Original' or 'Create Subfolder'?"; } }