mirror of
https://github.com/transmission/transmission
synced 2024-12-25 01:03:01 +00:00
(trunk web) prevent extra pointless requests
This commit is contained in:
parent
77f282f958
commit
d90c3f04b4
1 changed files with 2 additions and 1 deletions
|
@ -1110,7 +1110,8 @@ Transmission.prototype =
|
|||
new_torrent_ids.push(this.id);
|
||||
} );
|
||||
|
||||
tr.remote.loadTorrentFiles( refresh_files_for );
|
||||
if(refresh_files_for.length > 0)
|
||||
tr.remote.loadTorrentFiles( refresh_files_for );
|
||||
|
||||
if(new_torrent_ids.length > 0)
|
||||
tr.remote.getInitialDataFor(new_torrent_ids, function(torrents){ tr.addTorrents(torrents) } );
|
||||
|
|
Loading…
Reference in a new issue