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

Co-authored-by: BaronGreenback <jimcartlidge@yahoo.co.uk>
This commit is contained in:
Cody Robibero 2020-11-13 13:18:31 -07:00 committed by GitHub
parent 95ebb9a55a
commit 24ac5cc353
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -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);