aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IndexFolder.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-30 10:30:10 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-30 10:30:10 -0400
commita0e8a079b47ff3adcd163c68066577c915af949c (patch)
treeb7ebed5439cc43f87e14a176f83492517ae30a57 /MediaBrowser.Controller/Entities/IndexFolder.cs
parent93ad0e469ca48a940364e78c94a579212bc52dc4 (diff)
fixed indexing
Diffstat (limited to 'MediaBrowser.Controller/Entities/IndexFolder.cs')
-rw-r--r--MediaBrowser.Controller/Entities/IndexFolder.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/IndexFolder.cs b/MediaBrowser.Controller/Entities/IndexFolder.cs
index 637c4195a..13fcba489 100644
--- a/MediaBrowser.Controller/Entities/IndexFolder.cs
+++ b/MediaBrowser.Controller/Entities/IndexFolder.cs
@@ -5,6 +5,7 @@ using System.Linq;
using System.Runtime.Serialization;
using System.Threading;
using System.Threading.Tasks;
+using MediaBrowser.Model.Entities;
namespace MediaBrowser.Controller.Entities
{
@@ -64,6 +65,14 @@ namespace MediaBrowser.Controller.Entities
}
}
+ public override LocationType LocationType
+ {
+ get
+ {
+ return LocationType.Virtual;
+ }
+ }
+
/// <summary>
/// Override this to return the folder that should be used to construct a container
/// for this item in an index. GroupInIndex should be true as well.