1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-23 04:54:18 +00:00

Convert to the proper type

This commit is contained in:
Chocobo1 2020-08-19 15:27:23 +08:00
parent f7f0a27d76
commit ed2756b885
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -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;