mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-25 02:36:10 +03: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',
|
||||
method: 'get',
|
||||
onSuccess : function (isEnabled) {
|
||||
alternativeSpeedsLimit = !!isEnabled;
|
||||
alternativeSpeedsLimit = !!parseInt(isEnabled);
|
||||
if (alternativeSpeedsLimit)
|
||||
$('alternativeSpeedLimits').src = "images/slow.png"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue