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:
parent
27e314088e
commit
44f241a4eb
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue