mirror of
https://github.com/Readarr/Readarr.git
synced 2026-09-21 18:55:12 -04:00
Fixed: Increased timeout when waiting for rtorrent to finish adding torrent.
fixes #1665
This commit is contained in:
1 parent
fc15daa37e
commit
0255eb3aca
1 file changed
+2
-2
@@ -72,8 +72,8 @@ protected override string AddFromTorrentFile(RemoteEpisode remoteEpisode, string
|
||||
{
|
||||
_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.TvCategory, Settings);
|
||||
|
||||
Reference in new issue
Block a user