|
|
@ -123,8 +123,15 @@ namespace Ombi.Schedule.Jobs.Ombi
|
|
|
|
else
|
|
|
|
else
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Logger.LogDebug(LoggingEvents.Updater, "We are linux");
|
|
|
|
Logger.LogDebug(LoggingEvents.Updater, "We are linux");
|
|
|
|
|
|
|
|
if (RuntimeInformation.OSDescription.Contains("arm", CompareOptions.IgnoreCase))
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
download = updates.Downloads.FirstOrDefault(x => x.Name.Contains("arm", CompareOptions.IgnoreCase));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
download = updates.Downloads.FirstOrDefault(x => x.Name.Contains("linux", CompareOptions.IgnoreCase));
|
|
|
|
download = updates.Downloads.FirstOrDefault(x => x.Name.Contains("linux", CompareOptions.IgnoreCase));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
if (download == null)
|
|
|
|
if (download == null)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Logger.LogDebug(LoggingEvents.Updater, "There were no downloads");
|
|
|
|
Logger.LogDebug(LoggingEvents.Updater, "There were no downloads");
|
|
|
|