From db85d1fbc3a301d03ac8cdf083f405b6d1b3d2b8 Mon Sep 17 00:00:00 2001 From: sbwalker Date: Mon, 13 Oct 2025 14:19:49 -0400 Subject: [PATCH] improve error handling when handling module migrations --- Oqtane.Server/Infrastructure/DatabaseManager.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Oqtane.Server/Infrastructure/DatabaseManager.cs b/Oqtane.Server/Infrastructure/DatabaseManager.cs index 4dd4ea52..1cc78a5a 100644 --- a/Oqtane.Server/Infrastructure/DatabaseManager.cs +++ b/Oqtane.Server/Infrastructure/DatabaseManager.cs @@ -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])