1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-01-02 21:26:08 +00:00

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

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