From 44f241a4eb80aad1260080f504f2dbe19c1e3619 Mon Sep 17 00:00:00 2001 From: kaso17 Date: Mon, 6 Nov 2017 15:03:12 +0100 Subject: [PATCH] IndexerException: use GetBaseException for better error messages --- src/Jackett.Common/IndexerException.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { } }