1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-22 06:00:41 +00:00

(trunk) #5619 'Invalid magnet link gives no error dialog' -- fixed with patch by dale2507

This commit is contained in:
Jordan Lee 2014-04-15 21:26:52 +00:00
parent 34870bb938
commit e02b244300

View file

@ -982,7 +982,7 @@ Transmission.prototype =
}; };
remote.sendRequest (o, function(response) { remote.sendRequest (o, function(response) {
if (response.result != 'success') if (response.result != 'success')
alert ('Error adding "' + file.name + '": ' + response.result); alert ('Error adding "' + url + '": ' + response.result);
}); });
} }
} }