mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-20 09:04:42 +01:00
Fix always null expressions
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user