1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

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

View File

@ -189,7 +189,7 @@ public bool SkipFreeSpaceCheckWhenImporting
public bool CopyUsingHardlinks
{
get { return GetValueBoolean("CopyUsingHardlinks", false); }
get { return GetValueBoolean("CopyUsingHardlinks", true); }
set { SetValue("CopyUsingHardlinks", value); }
}