Skip to content

Commit

Permalink
Fix download dir option name in Transmission service
Browse files Browse the repository at this point in the history
  • Loading branch information
iben12 committed Sep 22, 2017
1 parent dc8bcc2 commit 3a8de2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Services/Transmission.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function __construct($config)
public function add($url, $title)
{
$dir = $this->config['shows_dir'] . $title . "/";
return $this->transmission->add($url, false, ["download_dir" => $dir]);
return $this->transmission->add($url, false, ["download-dir" => $dir]);
}

public function cleanup()
Expand Down

0 comments on commit 3a8de2c

Please sign in to comment.