mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
WebAPI: Use specific number to represent non-existing values
Closes #15545.
This commit is contained in:
parent
e96f2d7be0
commit
5c9655abc3
2 changed files with 4 additions and 4 deletions
|
@ -97,7 +97,7 @@ window.qBittorrent.PropTrackers = (function() {
|
|||
|
||||
const row = {
|
||||
rowId: tracker.url,
|
||||
tier: tracker.tier,
|
||||
tier: (tracker.tier >= 0) ? tracker.tier : "",
|
||||
url: tracker.url,
|
||||
status: status,
|
||||
peers: tracker.num_peers,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue