aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-07-10 03:38:15 -0400
committerGitHub <noreply@github.com>2017-07-10 03:38:15 -0400
commit5199fea8e6b16e694e5b2cf8ebdad1c87eecf4ca (patch)
tree8a2c5c2bbdf5455aa304300baf6042b4c4d78bc5 /MediaBrowser.Model
parent140594882e03bbd8c949ae68414ad19baaeba407 (diff)
parent07ab6a19e25b722513cf4731427ca04a08c6cb86 (diff)
Merge pull request #2750 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/Sync/SyncJob.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Sync/SyncJob.cs b/MediaBrowser.Model/Sync/SyncJob.cs
index 6709426b8..f0e262c50 100644
--- a/MediaBrowser.Model/Sync/SyncJob.cs
+++ b/MediaBrowser.Model/Sync/SyncJob.cs
@@ -59,7 +59,7 @@ namespace MediaBrowser.Model.Sync
/// Gets or sets the status.
/// </summary>
/// <value>The status.</value>
- public SyncJobStatus Status { get; set; }
+ public SyncJobStatus Status { get; set; }
/// <summary>
/// Gets or sets the user identifier.
/// </summary>
@@ -105,9 +105,12 @@ namespace MediaBrowser.Model.Sync
public string PrimaryImageItemId { get; set; }
public string PrimaryImageTag { get; set; }
+ public bool EnableAutomaticResync { get; set; }
+
public SyncJob()
{
RequestedItemIds = new List<string>();
+ EnableAutomaticResync = true;
}
}
}