aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/AggregateFolder.cs
diff options
context:
space:
mode:
authorEric Reed <ebr@mediabrowser3.com>2013-08-19 17:17:03 -0400
committerEric Reed <ebr@mediabrowser3.com>2013-08-19 17:17:03 -0400
commit80fb3c9eb4a94b435f56e9011853aae4397f6af9 (patch)
treecfcfdf873d27fa4ce6fddac6667db7ba0e1d3d22 /MediaBrowser.Controller/Entities/AggregateFolder.cs
parenteec92175f99b963bc853674dd164446316f302d1 (diff)
Initial support of shortcuts everywhere
Diffstat (limited to 'MediaBrowser.Controller/Entities/AggregateFolder.cs')
-rw-r--r--MediaBrowser.Controller/Entities/AggregateFolder.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/AggregateFolder.cs b/MediaBrowser.Controller/Entities/AggregateFolder.cs
index c4fda4fa2..302842e7e 100644
--- a/MediaBrowser.Controller/Entities/AggregateFolder.cs
+++ b/MediaBrowser.Controller/Entities/AggregateFolder.cs
@@ -12,6 +12,17 @@ namespace MediaBrowser.Controller.Entities
public class AggregateFolder : Folder
{
/// <summary>
+ /// We don't support manual shortcuts
+ /// </summary>
+ protected override bool SupportsShortcutChildren
+ {
+ get
+ {
+ return false;
+ }
+ }
+
+ /// <summary>
/// The _virtual children
/// </summary>
private readonly ConcurrentBag<BaseItem> _virtualChildren = new ConcurrentBag<BaseItem>();