1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

Fixed failing tests.

This commit is contained in:
Taloth Saldono
2018-11-23 19:59:01 +01:00
parent 080bf6787a
commit bfe2976463
3 changed files with 5 additions and 5 deletions
@@ -21,7 +21,7 @@ namespace NzbDrone.Core.Configuration
Version ReleaseVersion { get; }
string ReleaseBranch { get; }
bool BuiltInUpdaterAllowed { get; }
bool IsExternalUpdateMechanism { get; }
UpdateMechanism DefaultUpdateMechanism { get; }
string DefaultBranch { get; }
}
@@ -111,7 +111,7 @@ namespace NzbDrone.Core.Configuration
public string ReleaseBranch { get; set; }
public bool BuiltInUpdaterAllowed => PackageUpdateMechanism == UpdateMechanism.BuiltIn;
public bool IsExternalUpdateMechanism => PackageUpdateMechanism >= UpdateMechanism.External;
public UpdateMechanism DefaultUpdateMechanism { get; private set; }
public string DefaultBranch { get; private set; }
}