mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-14 02:27:09 -07:00
Convert to the proper type
This commit is contained in:
parent
f7f0a27d76
commit
ed2756b885
1 changed files with 1 additions and 1 deletions
|
@ -2101,7 +2101,7 @@
|
|||
// Share Ratio Limiting
|
||||
let max_ratio = -1;
|
||||
if ($('max_ratio_checkbox').getProperty('checked')) {
|
||||
max_ratio = $('max_ratio_value').getProperty('value');
|
||||
max_ratio = $('max_ratio_value').getProperty('value').toFloat();
|
||||
if (isNaN(max_ratio) || (max_ratio < 0) || (max_ratio > 9998)) {
|
||||
alert("QBT_TR(Share ratio limit must be between 0 and 9998.)QBT_TR[CONTEXT=HttpServer]");
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue