update name searching

This commit is contained in:
Luke Pulverenti
2016-05-12 22:36:01 -04:00
parent 829aa9e855
commit 04d3175473
2 changed files with 7 additions and 19 deletions

View File

@@ -933,21 +933,10 @@ namespace MediaBrowser.Server.Implementations.Library
Path.Combine(path, validFilename) :
Path.Combine(path, subFolderPrefix, validFilename);
var id = GetNewItemId(fullPath, type);
BaseItem obj;
if (!_libraryItemsCache.TryGetValue(id, out obj))
{
obj = CreateItemByName<T>(fullPath, name, id);
RegisterItem(id, obj);
}
return obj as T;
return CreateItemByName<T>(fullPath, name);
}
private T CreateItemByName<T>(string path, string name, Guid id)
private T CreateItemByName<T>(string path, string name)
where T : BaseItem, new()
{
var isArtist = typeof(T) == typeof(MusicArtist);
@@ -970,6 +959,8 @@ namespace MediaBrowser.Server.Implementations.Library
}
}
var id = GetNewItemId(path, typeof(T));
var item = GetItemById(id) as T;
if (item == null)