mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-22 17:26:21 +03:00
- Fixed upload rate limit
This commit is contained in:
parent
bb9950403d
commit
b63d1f8d11
1 changed files with 2 additions and 2 deletions
|
@ -1160,10 +1160,10 @@ void GUI::configureSession(){
|
|||
switch(limits.second){
|
||||
case -1: // Upload limit disabled
|
||||
case 0:
|
||||
BTSession.setDownloadRateLimit(-1);
|
||||
BTSession.setUploadRateLimit(-1);
|
||||
break;
|
||||
default:
|
||||
BTSession.setDownloadRateLimit(limits.second*1024);
|
||||
BTSession.setUploadRateLimit(limits.second*1024);
|
||||
}
|
||||
// Apply ratio (0 if disabled)
|
||||
BTSession.setGlobalRatio(options->getRatio());
|
||||
|
|
Loading…
Reference in a new issue