improve error handling when handling module migrations

This commit is contained in:
sbwalker
2025-10-13 14:19:49 -04:00
parent 02c4da5539
commit db85d1fbc3

View File

@ -507,6 +507,10 @@ namespace Oqtane.Infrastructure
}
}
}
else
{
result.Message = "An Error Occurred Installing " + moduleDefinition.Name + " - ServerManagerType " + moduleDefinition.ServerManagerType + " Does Not Exist";
}
}
if (string.IsNullOrEmpty(result.Message) && moduleDefinition.Version != versions[versions.Length - 1])