mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
WebUI: Fix initial state of the alternative speed limits icon
This commit is contained in:
parent
f43d8f1139
commit
280aa95ef6
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ window.addEvent('load', function () {
|
||||||
new Request({url: 'command/alternativeSpeedLimitsEnabled',
|
new Request({url: 'command/alternativeSpeedLimitsEnabled',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
onSuccess : function (isEnabled) {
|
onSuccess : function (isEnabled) {
|
||||||
alternativeSpeedsLimit = !!isEnabled;
|
alternativeSpeedsLimit = !!parseInt(isEnabled);
|
||||||
if (alternativeSpeedsLimit)
|
if (alternativeSpeedsLimit)
|
||||||
$('alternativeSpeedLimits').src = "images/slow.png"
|
$('alternativeSpeedLimits').src = "images/slow.png"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue