IndexerException: use GetBaseException for better error messages

This commit is contained in:
kaso17 2017-11-06 15:03:12 +01:00
parent 27e314088e
commit 44f241a4eb
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{
}
}