From 96fe74760fcb75905c7d609f5ac6e8b0ff17a251 Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Sat, 26 Oct 2019 19:58:30 +0000 Subject: [PATCH] Fixed: Instance where Sonarr was used in logging message --- .../MediaFiles/DownloadedMovieImportService.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NzbDrone.Core/MediaFiles/DownloadedMovieImportService.cs b/src/NzbDrone.Core/MediaFiles/DownloadedMovieImportService.cs index b49f606d8..7dc7669c6 100644 --- a/src/NzbDrone.Core/MediaFiles/DownloadedMovieImportService.cs +++ b/src/NzbDrone.Core/MediaFiles/DownloadedMovieImportService.cs @@ -285,7 +285,7 @@ namespace NzbDrone.Core.MediaFiles if (mount.DriveType == DriveType.Network) { - _logger.Error("Import failed, path does not exist or is not accessible by Sonarr: {0}. It's recommended to avoid mapped network drives when running as a Windows service. See the FAQ for more info", path); + _logger.Error("Import failed, path does not exist or is not accessible by Radarr: {0}. It's recommended to avoid mapped network drives when running as a Windows service. See the FAQ for more info", path); return; } } @@ -294,12 +294,12 @@ namespace NzbDrone.Core.MediaFiles { if (path.StartsWith(@"\\")) { - _logger.Error("Import failed, path does not exist or is not accessible by Sonarr: {0}. Ensure the user running Sonarr has access to the network share", path); + _logger.Error("Import failed, path does not exist or is not accessible by Radarr: {0}. Ensure the user running Radarr has access to the network share", path); return; } } - _logger.Error("Import failed, path does not exist or is not accessible by Sonarr: {0}. Ensure the path exists and the user running Sonarr has the correct permissions to access this file/folder", path); + _logger.Error("Import failed, path does not exist or is not accessible by Radarr: {0}. Ensure the path exists and the user running Radarr has the correct permissions to access this file/folder", path); } } }