noodny / node-ftp-client

MIT License
64 stars 32 forks source link

download one less file then total count #11

Closed neelshah23 closed 7 years ago

neelshah23 commented 7 years ago

I have change client.js line 280

 _.each(list.splice(1, list.length-1), function (file) ...

with

 _.each(list.splice(0, list.length), function (file)... 

this fixed my issue.