aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library/Validators/PeopleValidator.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-18 03:39:20 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-18 03:39:20 -0500
commitfa714425dd91fed2ca691cd45f73f7ea5a579dff (patch)
tree2c80df4c66a2eee15f59f3c3cc8b6228b7e51e69 /Emby.Server.Implementations/Library/Validators/PeopleValidator.cs
parent7a2cb6da5a14e8786adefbe3a58baa202c6f85e2 (diff)
begin to rework repositories
Diffstat (limited to 'Emby.Server.Implementations/Library/Validators/PeopleValidator.cs')
-rw-r--r--Emby.Server.Implementations/Library/Validators/PeopleValidator.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/Validators/PeopleValidator.cs b/Emby.Server.Implementations/Library/Validators/PeopleValidator.cs
index c32af8eb1..6cd24058a 100644
--- a/Emby.Server.Implementations/Library/Validators/PeopleValidator.cs
+++ b/Emby.Server.Implementations/Library/Validators/PeopleValidator.cs
@@ -127,7 +127,11 @@ namespace Emby.Server.Implementations.Library.Validators
{
var item = _libraryManager.GetPerson(person.Key);
- var options = new MetadataRefreshOptions(_fileSystem);
+ var options = new MetadataRefreshOptions(_fileSystem)
+ {
+ ImageRefreshMode = ImageRefreshMode.ValidationOnly,
+ MetadataRefreshMode = MetadataRefreshMode.ValidationOnly
+ };
await item.RefreshMetadata(options, cancellationToken).ConfigureAwait(false);
}