aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/CollectionFolder.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-22 13:25:54 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-22 13:25:54 -0400
commit54eb7cb85537ef6959e3f1fab7871361b9bf8243 (patch)
tree581c3f120c09c0acc2856c5fc684d00c467e5aa8 /MediaBrowser.Controller/Entities/CollectionFolder.cs
parent4331700747440cfa2c2df0cea1abcace9ed60019 (diff)
update dlna profiles
Diffstat (limited to 'MediaBrowser.Controller/Entities/CollectionFolder.cs')
-rw-r--r--MediaBrowser.Controller/Entities/CollectionFolder.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Entities/CollectionFolder.cs b/MediaBrowser.Controller/Entities/CollectionFolder.cs
index 0ce88bee7..d8cca579e 100644
--- a/MediaBrowser.Controller/Entities/CollectionFolder.cs
+++ b/MediaBrowser.Controller/Entities/CollectionFolder.cs
@@ -129,14 +129,13 @@ namespace MediaBrowser.Controller.Entities
return NullTaskResult;
}
- private List<LinkedChild> _linkedChildren;
/// <summary>
/// Our children are actually just references to the ones in the physical root...
/// </summary>
/// <value>The linked children.</value>
public override List<LinkedChild> LinkedChildren
{
- get { return _linkedChildren ?? (_linkedChildren = GetLinkedChildrenInternal()); }
+ get { return GetLinkedChildrenInternal(); }
set
{
base.LinkedChildren = value;
@@ -175,7 +174,6 @@ namespace MediaBrowser.Controller.Entities
public void ResetDynamicChildren()
{
_actualChildren = null;
- _linkedChildren = null;
}
}
}