aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncJob.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Sync/SyncJob.cs')
-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;
}
}
}