only set creation date at resolve time

This commit is contained in:
Luke Pulverenti
2013-08-14 08:17:45 -04:00
parent 9b167174ad
commit f064d6c9c7
4 changed files with 18 additions and 7 deletions

View File

@@ -354,7 +354,7 @@ namespace MediaBrowser.Controller.Entities
}
//update our dates
EntityResolutionHelper.EnsureDates(this, args);
EntityResolutionHelper.EnsureDates(this, args, false);
IsOffline = false;

View File

@@ -681,7 +681,7 @@ namespace MediaBrowser.Controller.Entities
//existing item - check if it has changed
if (currentChild.HasChanged(child))
{
EntityResolutionHelper.EnsureDates(currentChild, child.ResolveArgs);
EntityResolutionHelper.EnsureDates(currentChild, child.ResolveArgs, false);
validChildren.Add(new Tuple<BaseItem, bool>(currentChild, true));
}