From 84841de9c84273cc9363ce6af224a130edc5b82e Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Sat, 16 May 2009 16:59:45 +0000 Subject: [PATCH] (trunk web) #2085 in Web Client, torrents added by URL are always paused, regardless of preferences --- web/javascript/transmission.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/javascript/transmission.js b/web/javascript/transmission.js index 9c999f697..3030e186f 100644 --- a/web/javascript/transmission.js +++ b/web/javascript/transmission.js @@ -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';