diff --git a/src/Jackett.Common/IndexerException.cs b/src/Jackett.Common/IndexerException.cs index 429a0c786..1b1a73ed3 100644 --- a/src/Jackett.Common/IndexerException.cs +++ b/src/Jackett.Common/IndexerException.cs @@ -23,7 +23,7 @@ namespace Jackett } public IndexerException(IIndexer Indexer, Exception innerException) - : this(Indexer, "Exception (" + Indexer.ID + "): " + innerException.Message, innerException) + : this(Indexer, "Exception (" + Indexer.ID + "): " + innerException.GetBaseException().Message, innerException) { } }