This commit is contained in:
Michael Bucari-Tovo 2022-08-18 10:47:53 -06:00
parent 09cc838bb4
commit 1927d19961

View File

@ -121,7 +121,6 @@ namespace LibationFileManager
#if DEBUG #if DEBUG
// `First` instead of `FirstOrDefault`. If it's not present we're going to fail anyway. May as well be here
var modulePath = ModuleList.SingleOrDefault(m => m.ModuleName.EqualsInsensitive(asmName))?.FileName; var modulePath = ModuleList.SingleOrDefault(m => m.ModuleName.EqualsInsensitive(asmName))?.FileName;
#else #else
var here = Path.GetDirectoryName(Environment.ProcessPath); var here = Path.GetDirectoryName(Environment.ProcessPath);
@ -134,6 +133,7 @@ namespace LibationFileManager
#endif #endif
if (modulePath is null) if (modulePath is null)
{ {
//Let the runtime handle any dll not found exceptions.
Serilog.Log.Logger.Error($"Unable to load module {args.Name}"); Serilog.Log.Logger.Error($"Unable to load module {args.Name}");
return null; return null;
} }