mirror of
https://github.com/Sonarr/Sonarr
synced 2025-12-28 19:24:37 +01:00
Fix typos
This commit is contained in:
parent
71f1593fd9
commit
38cd63ec04
5 changed files with 7 additions and 7 deletions
|
|
@ -343,7 +343,7 @@ private List<Process> GetProcessesByName(string name)
|
|||
}
|
||||
catch
|
||||
{
|
||||
// Don't crash on gettings some log data.
|
||||
// Don't crash on getting some log data.
|
||||
}
|
||||
|
||||
return processes;
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@ protected virtual Expression VisitUnary(UnaryExpression expression)
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Visits the lamda expression.
|
||||
/// Visits the lambda expression.
|
||||
/// </summary>
|
||||
/// <param name="lambdaExpression"></param>
|
||||
/// <returns></returns>
|
||||
|
|
|
|||
|
|
@ -110,7 +110,7 @@ static FreeboxDownloadTask()
|
|||
{ "bt_file_error", "Error accessing torrent files." },
|
||||
{ "missing_ctx_file", "Error accessing task context file." },
|
||||
{ "nzb_no_group", "Cannot find the requested group on server." },
|
||||
{ "nzb_not_found", "Article not fount on the server." },
|
||||
{ "nzb_not_found", "Article not found on the server." },
|
||||
{ "nzb_invalid_crc", "Invalid article CRC." },
|
||||
{ "nzb_invalid_size", "Invalid article size." },
|
||||
{ "nzb_invalid_filename", "Invalid filename." },
|
||||
|
|
|
|||
|
|
@ -96,7 +96,7 @@ public override IEnumerable<DownloadClientItem> GetItems()
|
|||
case FreeboxDownloadTaskStatus.Starting: // task is preparing to start download
|
||||
case FreeboxDownloadTaskStatus.Downloading:
|
||||
case FreeboxDownloadTaskStatus.Retry: // you can set a task status to ‘retry’ to restart the download task.
|
||||
case FreeboxDownloadTaskStatus.Checking: // checking data before lauching download.
|
||||
case FreeboxDownloadTaskStatus.Checking: // checking data before launching download.
|
||||
item.Status = DownloadItemStatus.Downloading;
|
||||
break;
|
||||
|
||||
|
|
|
|||
|
|
@ -168,7 +168,7 @@ public override HealthCheck Check()
|
|||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.Error(ex, "Unknown error occured in RemotePathMapping HealthCheck");
|
||||
_logger.Error(ex, "Unknown error occurred in RemotePathMapping HealthCheck");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -216,7 +216,7 @@ public HealthCheck Check(IEvent message)
|
|||
"#remote-path-file-removed");
|
||||
}
|
||||
|
||||
// If the previous case did not match then the failure occured in DownloadedEpisodeImportService,
|
||||
// If the previous case did not match then the failure occurred in DownloadedEpisodeImportService,
|
||||
// while trying to locate the files reported by the download client
|
||||
// Only check clients not in failure status, those get another message
|
||||
var client = _downloadClientProvider.GetDownloadClients(true).FirstOrDefault(x => x.Definition.Name == failureMessage.DownloadClientInfo.Name);
|
||||
|
|
@ -359,7 +359,7 @@ public HealthCheck Check(IEvent message)
|
|||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.Error(ex, "Unknown error occured in RemotePathMapping HealthCheck");
|
||||
_logger.Error(ex, "Unknown error occurred in RemotePathMapping HealthCheck");
|
||||
}
|
||||
|
||||
return new HealthCheck(GetType());
|
||||
|
|
|
|||
Loading…
Reference in a new issue