mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 05:47:22 -04:00
Fixed: (Apps) Change the default sync level to Full Sync
This commit is contained in:
parent
e012eda0cf
commit
a522796798
2 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@ namespace NzbDrone.Core.Applications
|
|||
yield return new ApplicationDefinition
|
||||
{
|
||||
Name = GetType().Name,
|
||||
SyncLevel = ApplicationSyncLevel.AddOnly,
|
||||
SyncLevel = ApplicationSyncLevel.FullSync,
|
||||
Implementation = GetType().Name,
|
||||
Settings = config
|
||||
};
|
||||
|
|
|
@ -6,6 +6,6 @@ namespace NzbDrone.Core.Applications
|
|||
{
|
||||
public ApplicationSyncLevel SyncLevel { get; set; }
|
||||
|
||||
public override bool Enable => SyncLevel == ApplicationSyncLevel.AddOnly || SyncLevel == ApplicationSyncLevel.FullSync;
|
||||
public override bool Enable => SyncLevel is ApplicationSyncLevel.AddOnly or ApplicationSyncLevel.FullSync;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue