From b52dd571ee7814508c2129432ba7d275db5bc925 Mon Sep 17 00:00:00 2001 From: hishamco Date: Tue, 29 Sep 2020 19:18:56 +0300 Subject: [PATCH] Fix loading bug --- Oqtane.Client/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Oqtane.Client/Program.cs b/Oqtane.Client/Program.cs index e7b6f632..912720d9 100644 --- a/Oqtane.Client/Program.cs +++ b/Oqtane.Client/Program.cs @@ -120,7 +120,7 @@ namespace Oqtane.Client // Loads the stallite assemblies early if (entry.Name.EndsWith(Constants.StalliteAssemblyExtension)) { - Assembly.Load(entry.Name); + Assembly.Load(file); } else {