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';