From 402f7435ee534b4a066cbccad08256d2cd91c093 Mon Sep 17 00:00:00 2001 From: TCBWZA Date: Sat, 8 Apr 2017 18:29:50 +0200 Subject: [PATCH] Change SSL port and set default branch to develop --- src/NzbDrone.Core/Configuration/ConfigFileProvider.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs b/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs index 75310a499..a4586c4ad 100644 --- a/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs +++ b/src/NzbDrone.Core/Configuration/ConfigFileProvider.cs @@ -136,7 +136,7 @@ namespace NzbDrone.Core.Configuration public int Port => GetValueInt("Port", 8686); - public int SslPort => GetValueInt("SslPort", 9898); + public int SslPort => GetValueInt("SslPort", 6868); public bool EnableSsl => GetValueBoolean("EnableSsl", false); @@ -162,7 +162,7 @@ namespace NzbDrone.Core.Configuration public bool AnalyticsEnabled => GetValueBoolean("AnalyticsEnabled", true, persist: false); - public string Branch => GetValue("Branch", "master").ToLowerInvariant(); + public string Branch => GetValue("Branch", "develop").ToLowerInvariant(); public string LogLevel => GetValue("LogLevel", "Info");