Update DelugeProxy.cs

sonarr commit align
pull/9813/head
nopoz 3 months ago committed by GitHub
parent ad21fcb628
commit 4d832836c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -105,7 +105,7 @@ namespace NzbDrone.Core.Download.Clients.Deluge
{
download_location = settings.DownloadDirectory,
move_completed_path = settings.CompletedDirectory,
move_completed = !string.IsNullOrEmpty(settings.CompletedDirectory),
move_completed = settings.CompletedDirectory.IsNotNullOrWhiteSpace(),
add_paused = settings.AddPaused,
remove_at_ratio = false
};
@ -121,7 +121,7 @@ namespace NzbDrone.Core.Download.Clients.Deluge
{
download_location = settings.DownloadDirectory,
move_completed_path = settings.CompletedDirectory,
move_completed = !string.IsNullOrEmpty(settings.CompletedDirectory),
move_completed = settings.CompletedDirectory.IsNotNullOrWhiteSpace(),
add_paused = settings.AddPaused,
remove_at_ratio = false
};

Loading…
Cancel
Save