mirror of
https://github.com/transmission/transmission
synced 2025-03-05 19:18:19 +00:00
(trunk web) #2085 in Web Client, torrents added by URL are always paused, regardless of preferences
This commit is contained in:
parent
80158af42f
commit
84841de9c8
1 changed files with 1 additions and 1 deletions
|
@ -1243,7 +1243,7 @@ Transmission.prototype =
|
|||
var tr = this;
|
||||
var args = { };
|
||||
if ('' != $('#torrent_upload_url').val()) {
|
||||
tr.remote.addTorrentByUrl($('#torrent_upload_url').val(), { paused: !this[Prefs._Autostart] });
|
||||
tr.remote.addTorrentByUrl($('#torrent_upload_url').val(), { paused: !this[Prefs._AutoStart] });
|
||||
} else {
|
||||
args.url = '/transmission/upload?paused=' + (this[Prefs._AutoStart] ? 'false' : 'true');
|
||||
args.type = 'POST';
|
||||
|
|
Loading…
Add table
Reference in a new issue