diff --git a/src/NzbDrone.Core/Configuration/ConfigService.cs b/src/NzbDrone.Core/Configuration/ConfigService.cs index 39766b4bb..fbe8b3bf2 100644 --- a/src/NzbDrone.Core/Configuration/ConfigService.cs +++ b/src/NzbDrone.Core/Configuration/ConfigService.cs @@ -214,7 +214,7 @@ namespace NzbDrone.Core.Configuration public Boolean CopyUsingHardlinks { - get { return GetValueBoolean("CopyUsingHardlinks", true); } + get { return GetValueBoolean("CopyUsingHardlinks", false); } set { SetValue("CopyUsingHardlinks", value); } } diff --git a/src/NzbDrone.Mono/DiskProvider.cs b/src/NzbDrone.Mono/DiskProvider.cs index 5610197a3..d438e098b 100644 --- a/src/NzbDrone.Mono/DiskProvider.cs +++ b/src/NzbDrone.Mono/DiskProvider.cs @@ -160,8 +160,9 @@ namespace NzbDrone.Mono UnixFileSystemInfo.GetFileSystemEntry(source).CreateLink(destination); return true; } - catch + catch (Exception ex) { + Logger.DebugException(String.Format("Hardlink '{0}' to '{1}' failed.", source, destination), ex); return false; } } diff --git a/src/NzbDrone.Windows/DiskProvider.cs b/src/NzbDrone.Windows/DiskProvider.cs index f4c13c344..05a98b4ab 100644 --- a/src/NzbDrone.Windows/DiskProvider.cs +++ b/src/NzbDrone.Windows/DiskProvider.cs @@ -110,8 +110,9 @@ namespace NzbDrone.Windows { return CreateHardLink(destination, source, IntPtr.Zero); } - catch + catch (Exception ex) { + Logger.DebugException(String.Format("Hardlink '{0}' to '{1}' failed.", source, destination), ex); return false; } } diff --git a/src/UI/Settings/MediaManagement/Sorting/SortingViewTemplate.hbs b/src/UI/Settings/MediaManagement/Sorting/SortingViewTemplate.hbs index 55587059c..925c29742 100644 --- a/src/UI/Settings/MediaManagement/Sorting/SortingViewTemplate.hbs +++ b/src/UI/Settings/MediaManagement/Sorting/SortingViewTemplate.hbs @@ -70,8 +70,8 @@ - - + +