Fix always null expressions

This commit is contained in:
Bond_009
2019-01-25 21:52:10 +01:00
parent e0315b5695
commit 8af256f9c2
7 changed files with 44 additions and 55 deletions

View File

@@ -466,9 +466,8 @@ namespace Emby.Server.Implementations
private static Tuple<Assembly, string> GetAssembly(Type type)
{
var assembly = type.GetTypeInfo().Assembly;
string path = null;
return new Tuple<Assembly, string>(assembly, path);
return new Tuple<Assembly, string>(assembly, null);
}
public virtual IStreamHelper CreateStreamHelper()