set DontFetchMeta at resolve time

This commit is contained in:
Luke Pulverenti 2013-06-09 09:31:23 -04:00
parent 4c230f7901
commit fb4c559549
2 changed files with 5 additions and 14 deletions

View File

@ -155,19 +155,7 @@ namespace MediaBrowser.Controller.Entities
/// Returns true if this item should not attempt to fetch metadata /// Returns true if this item should not attempt to fetch metadata
/// </summary> /// </summary>
/// <value><c>true</c> if [dont fetch meta]; otherwise, <c>false</c>.</value> /// <value><c>true</c> if [dont fetch meta]; otherwise, <c>false</c>.</value>
[IgnoreDataMember] public bool DontFetchMeta { get; set; }
public virtual bool DontFetchMeta
{
get
{
if (Path != null)
{
return Path.IndexOf("[dontfetchmeta]", StringComparison.OrdinalIgnoreCase) != -1;
}
return false;
}
}
/// <summary> /// <summary>
/// Determines whether the item has a saved local image of the specified name (jpg or png). /// Determines whether the item has a saved local image of the specified name (jpg or png).

View File

@ -1,9 +1,10 @@
using MediaBrowser.Common.Extensions; using MediaBrowser.Common.Extensions;
using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library; using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Resolvers;
using System;
using System.IO; using System.IO;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using MediaBrowser.Controller.Resolvers;
namespace MediaBrowser.Server.Implementations.Library namespace MediaBrowser.Server.Implementations.Library
{ {
@ -39,6 +40,8 @@ namespace MediaBrowser.Server.Implementations.Library
// Make sure the item has a name // Make sure the item has a name
EnsureName(item); EnsureName(item);
item.DontFetchMeta = item.Path.IndexOf("[dontfetchmeta]", StringComparison.OrdinalIgnoreCase) != -1;
// Make sure DateCreated and DateModified have values // Make sure DateCreated and DateModified have values
EntityResolutionHelper.EnsureDates(item, args); EntityResolutionHelper.EnsureDates(item, args);
} }