New: Changed the default of 'Use Hardlinks instead of Copy' to true. Most ppl seem to want that anyway.

This commit is contained in:
Taloth Saldono 2016-02-21 20:26:54 +01:00
parent bb9a0371c5
commit 79c565911c
1 changed files with 1 additions and 1 deletions

View File

@ -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); }
}