aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/MusicVideo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Entities/MusicVideo.cs')
-rw-r--r--MediaBrowser.Controller/Entities/MusicVideo.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/MediaBrowser.Controller/Entities/MusicVideo.cs b/MediaBrowser.Controller/Entities/MusicVideo.cs
index 09f99f500..6b2601687 100644
--- a/MediaBrowser.Controller/Entities/MusicVideo.cs
+++ b/MediaBrowser.Controller/Entities/MusicVideo.cs
@@ -1,6 +1,5 @@
using MediaBrowser.Model.Entities;
using System;
-using System.Runtime.Serialization;
namespace MediaBrowser.Controller.Entities
{
@@ -17,19 +16,6 @@ namespace MediaBrowser.Controller.Entities
/// </summary>
/// <value>The album.</value>
public string Album { get; set; }
-
- /// <summary>
- /// Should be overridden to return the proper folder where metadata lives
- /// </summary>
- /// <value>The meta location.</value>
- [IgnoreDataMember]
- public override string MetaLocation
- {
- get
- {
- return VideoType == VideoType.VideoFile || VideoType == VideoType.Iso || IsMultiPart ? System.IO.Path.GetDirectoryName(Path) : Path;
- }
- }
/// <summary>
/// Determines whether the specified name has artist.
@@ -49,17 +35,5 @@ namespace MediaBrowser.Controller.Entities
{
return this.GetProviderId(MetadataProviders.Tmdb) ?? this.GetProviderId(MetadataProviders.Imdb) ?? base.GetUserDataKey();
}
-
- /// <summary>
- /// Needed because the resolver stops at the movie folder and we find the video inside.
- /// </summary>
- /// <value><c>true</c> if [use parent path to create resolve args]; otherwise, <c>false</c>.</value>
- protected override bool UseParentPathToCreateResolveArgs
- {
- get
- {
- return VideoType == VideoType.VideoFile || VideoType == VideoType.Iso || IsMultiPart;
- }
- }
}
}