mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-21 07:57:22 -06:00
Fix alternative upload speed limit overwriting standard upload speed limit.
This commit is contained in:
@@ -296,7 +296,7 @@ public:
|
|||||||
static void setAltGlobalUploadLimit(int limit) {
|
static void setAltGlobalUploadLimit(int limit) {
|
||||||
QSettings settings("qBittorrent", "qBittorrent");
|
QSettings settings("qBittorrent", "qBittorrent");
|
||||||
if(limit <= 0) limit = -1;
|
if(limit <= 0) limit = -1;
|
||||||
settings.setValue("Preferences/Connection/GlobalUPLimit", limit);
|
settings.setValue("Preferences/Connection/GlobalUPLimitAlt", limit);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool isAltBandwidthEnabled() {
|
static bool isAltBandwidthEnabled() {
|
||||||
|
|||||||
Reference in New Issue
Block a user