mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-19 12:44:19 +01:00
moved the http server to common, added more http handlers
This commit is contained in:
parent
572103cdfe
commit
5f5f2838b1
@@ -23,11 +23,9 @@ namespace MediaBrowser.Controller.Resolvers
|
||||
item.Path = args.Path;
|
||||
}
|
||||
|
||||
Folder parentFolder = args.Parent as Folder;
|
||||
|
||||
if (parentFolder != null)
|
||||
if (args.Parent != null)
|
||||
{
|
||||
item.Parent = parentFolder;
|
||||
item.Parent = args.Parent;
|
||||
}
|
||||
|
||||
item.Id = Kernel.GetMD5(item.Path);
|
||||
|
||||
Reference in New Issue
Block a user