From 79c565911ccb2e3bc6dc480c45685c608baac723 Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Sun, 21 Feb 2016 20:26:54 +0100 Subject: [PATCH] New: Changed the default of 'Use Hardlinks instead of Copy' to true. Most ppl seem to want that anyway. --- src/NzbDrone.Core/Configuration/ConfigService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Configuration/ConfigService.cs b/src/NzbDrone.Core/Configuration/ConfigService.cs index 476f25422..1f94d5471 100644 --- a/src/NzbDrone.Core/Configuration/ConfigService.cs +++ b/src/NzbDrone.Core/Configuration/ConfigService.cs @@ -189,7 +189,7 @@ namespace NzbDrone.Core.Configuration public bool CopyUsingHardlinks { - get { return GetValueBoolean("CopyUsingHardlinks", false); } + get { return GetValueBoolean("CopyUsingHardlinks", true); } set { SetValue("CopyUsingHardlinks", value); } }