From 91b5e359bd6267fdab6eb13ccaad99755946144d Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 25 Apr 2020 16:23:19 -0400 Subject: [PATCH] Fixed: Default new install to Aphrodite Fixes #4354 --- src/NzbDrone.Core/Configuration/ConfigFileProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs b/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs index 1659e15c3..56489e5a2 100644 --- a/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs +++ b/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs @@ -178,7 +178,7 @@ namespace NzbDrone.Core.Configuration public bool AnalyticsEnabled => GetValueBoolean("AnalyticsEnabled", true, persist: false); // TODO: Change back to "master" for the first stable release. - public string Branch => GetValue("Branch", "develop").ToLowerInvariant(); + public string Branch => GetValue("Branch", "aphrodite").ToLowerInvariant(); public string LogLevel => GetValue("LogLevel", "info"); public string ConsoleLogLevel => GetValue("ConsoleLogLevel", string.Empty, persist: false);