mirror of
https://github.com/Radarr/Radarr
synced 2026-02-23 07:02:37 +01:00
Increase timeout when waiting for rTorrent to finish adding torrent (#721)
Increase timeout when waiting for rTorrent to finish adding torrent
This commit is contained in:
parent
f850c65b56
commit
93e55b7575
1 changed files with 2 additions and 2 deletions
|
|
@ -75,8 +75,8 @@ protected override string AddFromTorrentFile(RemoteMovie remoteMovie, string has
|
|||
{
|
||||
_proxy.AddTorrentFromFile(filename, fileContent, Settings);
|
||||
|
||||
var tries = 2;
|
||||
var retryDelay = 100;
|
||||
var tries = 5;
|
||||
var retryDelay = 200;
|
||||
if (WaitForTorrent(hash, tries, retryDelay))
|
||||
{
|
||||
_proxy.SetTorrentLabel(hash, Settings.MovieCategory, Settings);
|
||||
|
|
|
|||
Loading…
Reference in a new issue