From 1d96ff8b1f7b94b8661b7e75587552e78ec7e39f Mon Sep 17 00:00:00 2001 From: Archi Date: Fri, 21 Apr 2023 11:41:32 +0200 Subject: [PATCH] Misc --- ArchiSteamFarm/IPC/Startup.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ArchiSteamFarm/IPC/Startup.cs b/ArchiSteamFarm/IPC/Startup.cs index 054be469c..120052d29 100644 --- a/ArchiSteamFarm/IPC/Startup.cs +++ b/ArchiSteamFarm/IPC/Startup.cs @@ -121,7 +121,8 @@ internal sealed class Startup { continue; } - physicalPath = Path.Combine(assemblyDirectory, plugin.PhysicalPath); + // ReSharper disable once RedundantSuppressNullableWarningExpression - required for .NET Framework + physicalPath = Path.Combine(assemblyDirectory!, plugin.PhysicalPath); } if (!Directory.Exists(physicalPath)) {