1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed: List Connection Error Mentions Indexer

This commit is contained in:
Qstick 2020-04-26 20:33:34 -04:00 committed by GitHub
parent c2761ef16c
commit c8de38ef23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -159,7 +159,7 @@ protected virtual ValidationFailure TestConnection()
{
_logger.Warn(ex, "Unable to connect to list");
return new ValidationFailure(string.Empty, "Unable to connect to indexer. " + ex.Message);
return new ValidationFailure(string.Empty, "Unable to connect to list. " + ex.Message);
}
catch (Exception ex)
{