aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-30 11:32:01 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-30 11:32:01 -0500
commit9e391bcffc1f3ed378c72084c00c0196e275e722 (patch)
treecc4516eb9f0491f50d72026eac5cac1486e05a0b /MediaBrowser.Server.Implementations/Library/LibraryManager.cs
parent858be5d7885587320b389328484bbdf102fc9363 (diff)
support new genre images
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/LibraryManager.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Library/LibraryManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
index 11c99a32c..1a52bb224 100644
--- a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
+++ b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
@@ -791,7 +791,7 @@ namespace MediaBrowser.Server.Implementations.Library
var id = path.GetMBId(type);
- var item = RetrieveItem(id) as T;
+ var item = isNew ? null : RetrieveItem(id) as T;
if (item == null)
{