ソースを参照

Update Emby.Server.Implementations/AppBase/ConfigurationHelper.cs

Co-authored-by: BaronGreenback <jimcartlidge@yahoo.co.uk>
Cody Robibero 4 年 前
コミット
24ac5cc353

+ 1 - 2
Emby.Server.Implementations/AppBase/ConfigurationHelper.cs

@@ -36,8 +36,7 @@ namespace Emby.Server.Implementations.AppBase
             }
             catch (Exception)
             {
-                var instanceConfiguration = Activator.CreateInstance(type);
-                configuration = instanceConfiguration ?? throw new ResourceNotFoundException(nameof(instanceConfiguration));
+                configuration = Activator.CreateInstance(type) ?? throw new ResourceNotFoundException(nameof(type));
             }
 
             using var stream = new MemoryStream(buffer?.Length ?? 0);