From 350f3958bc06c5be3076d9f01c2544ecbf1d8780 Mon Sep 17 00:00:00 2001 From: John F Date: Fri, 8 May 2015 13:22:28 -0400 Subject: [PATCH] Change start command from resume to start --- dist/models/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/models/client.js b/dist/models/client.js index 710cf019..52d15883 100644 --- a/dist/models/client.js +++ b/dist/models/client.js @@ -312,7 +312,7 @@ client.prototype.startTorrent = function(hash, callback) { for (i = 0, len = hash.length; i < len; i++) { - rTorrent.get('d.resume', [hash[i]]).then(function(data) { + rTorrent.get('d.start', [hash[i]]).then(function(data) { callback(null, data); }, function(error) { callback(error, null);