-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem about the number of files that have been downloaded #596
Comments
acitive:2, waiting:1800,stopped:200, total:2002 |
I have modified the code in settings.js: |
I add a new code into the aria2 start program: |
Now can someone tell me if the code in settings.js is just illustrative?If so, I'm afraid I've taken the time to put useful Settings into the launcher I wrote myself |
When I downloaded more than 1000 files, I found that the number of files became to 1000 / 1000
I changed the code in main.js :
rpc.subscribe('tellStopped', [0, 10], function(data) { scope.$apply(function() { utils.mergeMap(data[0], scope.stopped, scope.getCtx); }); });
It became to 10/10
But the code is:
rpc.subscribe('tellStopped', [0, 999999], function(data) { scope.$apply(function() { utils.mergeMap(data[0], scope.stopped, scope.getCtx); }); });
It's still 1000 / 1000
how can it show the correct files number
The text was updated successfully, but these errors were encountered: