WebUI: disallow number literals with zero fractions or dangling dots

Javascript treats them all the same as `Number`.
This commit is contained in:
Chocobo1
2025-08-26 17:21:22 +08:00
parent 86acc01b1a
commit acab056fe4
8 changed files with 21 additions and 20 deletions

View File

@@ -340,7 +340,7 @@ window.qBittorrent.ContextMenu ??= (() => {
else
there_are_f_l_piece_prio = true;
if (data["progress"] !== 1.0) // not downloaded
if (data["progress"] !== 1) // not downloaded
all_are_downloaded = false;
else if (data["super_seeding"] !== true)
all_are_super_seeding = false;