Update DelugeProxy.cs

fix missing commas
pull/9813/head
nopoz 3 months ago committed by GitHub
parent c6344c671d
commit ad21fcb628
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -104,7 +104,7 @@ namespace NzbDrone.Core.Download.Clients.Deluge
var options = new
{
download_location = settings.DownloadDirectory,
move_completed_path = settings.CompletedDirectory
move_completed_path = settings.CompletedDirectory,
move_completed = !string.IsNullOrEmpty(settings.CompletedDirectory),
add_paused = settings.AddPaused,
remove_at_ratio = false
@ -120,7 +120,7 @@ namespace NzbDrone.Core.Download.Clients.Deluge
var options = new
{
download_location = settings.DownloadDirectory,
move_completed_path = settings.CompletedDirectory
move_completed_path = settings.CompletedDirectory,
move_completed = !string.IsNullOrEmpty(settings.CompletedDirectory),
add_paused = settings.AddPaused,
remove_at_ratio = false

Loading…
Cancel
Save