Fixed: (Indexers) Include exception message in ValidationFailure

This commit is contained in:
Bogdan
2023-04-08 22:49:53 +03:00
parent d937bdac69
commit 7820a83a5d
3 changed files with 1 additions and 6 deletions

View File

@@ -644,7 +644,7 @@ namespace NzbDrone.Core.Indexers
{
_logger.Warn(ex, "Unable to connect to indexer");
return new ValidationFailure(string.Empty, "Unable to connect to indexer, check the log above the ValidationFailure for more details");
return new ValidationFailure(string.Empty, "Unable to connect to indexer, check the log above the ValidationFailure for more details. " + ex.Message);
}
return null;